Deserializer
Used to deserialize objects
Operations
- New
- ReadBool
- ReadBoolArray
- ReadByteArray
- ReadChar
- ReadCharArray
- ReadFloat
- ReadFloatArray
- ReadInt
- ReadIntArray
- ReadObject
- ReadObjectArray
New
Default constructor
New(buffer:Byte[])
Parameters
Name | Type | Description |
---|---|---|
buffer | Byte | input byte buffer to read from |
ReadBoolArray
Reads an array of values
method : public : ReadBoolArray() ~ Bool[]
Return
Type | Description |
---|---|
Bool | array of values |
ReadByteArray
Reads an array of values
method : public : ReadByteArray() ~ Byte[]
Return
Type | Description |
---|---|
Byte | array of values |
ReadCharArray
Reads an array of values
method : public : ReadCharArray() ~ Char[]
Return
Type | Description |
---|---|
Char | array of values |
ReadFloatArray
Reads an array of values
method : public : ReadFloatArray() ~ Float[]
Return
Type | Description |
---|---|
Float | array of values |
ReadIntArray
Reads an array of values
method : public : ReadIntArray() ~ Int[]
Return
Type | Description |
---|---|
Int | array of values |
ReadObjectArray
Reads an object array
method : public : ReadObjectArray() ~ Base[]
Return
Type | Description |
---|---|
Base | value read |