| Package | com.electrotank.electroserver4.esobject |
| Class | public class DataType |
| Property | Defined by | ||
|---|---|---|---|
| BooleanArray : DataType
[static]
Represents the BooleanArray data type.
| DataType | ||
| Byte : DataType
[static]
Represents the Byte data type.
| DataType | ||
| Character : DataType
[static]
Represents the Character data type.
| DataType | ||
| CharacterArray : DataType
[static]
Represents the CharacterArray data type.
| DataType | ||
| Double : DataType
[static]
Represents the Double data type.
| DataType | ||
| DoubleArray : DataType
[static]
Represents the DoubleArray data type.
| DataType | ||
| EsBoolean : DataType
[static]
Represents the Boolean data type.
| DataType | ||
| EsByteArray : DataType
[static]
Represents the ByteArray data type.
| DataType | ||
| EsNumber : DataType
[static]
Represents the Number data type.
| DataType | ||
| EsObject : DataType
[static]
Represents the EsObject data type.
| DataType | ||
| EsObjectArray : DataType
[static]
Represents the EsObjectArray data type.
| DataType | ||
| EsString : DataType
[static]
Represents the String data type.
| DataType | ||
| Float : DataType
[static]
Represents the Float data type.
| DataType | ||
| FloatArray : DataType
[static]
Represents the FloatArray data type.
| DataType | ||
| Integer : DataType
[static]
Represents the Integer data type.
| DataType | ||
| IntegerArray : DataType
[static]
Represents the IntegerArray data type.
| DataType | ||
| Long : DataType
[static]
Represents the Long data type.
| DataType | ||
| LongArray : DataType
[static]
Represents the LongArray data type.
| DataType | ||
| NumberArray : DataType
[static]
Represents the NumberArray data type.
| DataType | ||
| Short : DataType
[static]
Represents the Short data type.
| DataType | ||
| ShortArray : DataType
[static]
Represents the ShortArray data type.
| DataType | ||
| StringArray : DataType
[static]
Represents the StringArray data type.
| DataType | ||
| Method | Defined by | ||
|---|---|---|---|
|
DataType(ind:String, nm:String)
Creates a new instance of the DataType class and registers it.
| DataType | ||
|
findTypeByIndicator(id:String):DataType
[static]
Finds a data type by the id used to represent it.
| DataType | ||
|
findTypeByName(name:String):DataType
[static]
Finds a data type by the name used to represent it.
| DataType | ||
|
getIndicator():String
Returns the id of a data type.
| DataType | ||
|
getName():String
Gets the name of a data type.
| DataType | ||
|
[static]
Registers a new data type.
| DataType | ||
| BooleanArray | property |
public static var BooleanArray:DataTypeRepresents the BooleanArray data type.
| Byte | property |
public static var Byte:DataTypeRepresents the Byte data type.
| Character | property |
public static var Character:DataTypeRepresents the Character data type.
| CharacterArray | property |
public static var CharacterArray:DataTypeRepresents the CharacterArray data type.
| Double | property |
public static var Double:DataTypeRepresents the Double data type.
| DoubleArray | property |
public static var DoubleArray:DataTypeRepresents the DoubleArray data type.
| EsBoolean | property |
public static var EsBoolean:DataTypeRepresents the Boolean data type.
| EsByteArray | property |
public static var EsByteArray:DataTypeRepresents the ByteArray data type.
| EsNumber | property |
public static var EsNumber:DataTypeRepresents the Number data type.
| EsObject | property |
public static var EsObject:DataTypeRepresents the EsObject data type.
| EsObjectArray | property |
public static var EsObjectArray:DataTypeRepresents the EsObjectArray data type.
| EsString | property |
public static var EsString:DataTypeRepresents the String data type.
| Float | property |
public static var Float:DataTypeRepresents the Float data type.
| FloatArray | property |
public static var FloatArray:DataTypeRepresents the FloatArray data type.
| Integer | property |
public static var Integer:DataTypeRepresents the Integer data type.
| IntegerArray | property |
public static var IntegerArray:DataTypeRepresents the IntegerArray data type.
| Long | property |
public static var Long:DataTypeRepresents the Long data type.
| LongArray | property |
public static var LongArray:DataTypeRepresents the LongArray data type.
| NumberArray | property |
public static var NumberArray:DataTypeRepresents the NumberArray data type.
| Short | property |
public static var Short:DataTypeRepresents the Short data type.
| ShortArray | property |
public static var ShortArray:DataTypeRepresents the ShortArray data type.
| StringArray | property |
public static var StringArray:DataTypeRepresents the StringArray data type.
| DataType | () | constructor |
public function DataType(ind:String, nm:String)Creates a new instance of the DataType class and registers it.
Parametersind:String — The id used to represent the data type.
|
|
nm:String — The name of the data type.
|
| findTypeByIndicator | () | method |
public static function findTypeByIndicator(id:String):DataTypeFinds a data type by the id used to represent it.
Parametersid:String — The id used to represent the data type.
|
DataType —
The data type.
|
| findTypeByName | () | method |
public static function findTypeByName(name:String):DataTypeFinds a data type by the name used to represent it.
Parametersname:String — The name used to represent the data type.
|
DataType —
The data type.
|
| getIndicator | () | method |
public function getIndicator():StringReturns the id of a data type.
ReturnsString — The id of a data type.
|
| getName | () | method |
public function getName():StringGets the name of a data type.
ReturnsString |
| register | () | method |
public static function register(dt:DataType):voidRegisters a new data type.
Parametersdt:DataType — The data type.
|