This interface is used to define what is readable off of an EsObject.
public function getBoolean(name:String):Boolean
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Boolean — The value of the property.
|
public function getBooleanArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getByte(name:String):int
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| int — The value of the property.
|
public function getByteArray(name:String):ByteArray
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| ByteArray — The value of the property.
|
public function getChar(name:String):String
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| String — The value of the property.
|
public function getCharArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getDataType(name:String):DataType
Gets the data type of a given property.
Parameters
| name:String — Name of the data type.
|
Returns
public function getDouble(name:String):Number
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Number — The value of the property.
|
public function getDoubleArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getEsObject(name:String):EsObject
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
public function getEsObjectArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getFloat(name:String):Number
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Number — The value of the property.
|
public function getFloatArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getInteger(name:String):Number
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Number — The value of the property.
|
public function getIntegerArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getLong(name:String):String
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| String — The value of the property.
|
public function getLongArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getNumber(name:String):Number
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Number — The value of the property.
|
public function getNumberArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getShort(name:String):Number
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Number — The value of the property.
|
public function getShortArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|
public function getSize():Number
Gets the number of properties stored on the EsObject.
Returns
public function getString(name:String):String
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| String — The value of the property.
|
public function getStringArray(name:String):Array
Gets the value of the property based on the name provided.
Parameters
| name:String — Name of the property.
|
Returns
| Array — The value of the property.
|