U - the unit typeS - the scalar typepublic class DoubleScalarSerializer<U extends org.djunits.unit.Unit<U>,S extends org.djunits.value.vdouble.scalar.base.DoubleScalarInterface<U,S>> extends ObjectWithUnitSerializer<U,S>
Copyright (c) 2019-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
| Constructor and Description |
|---|
DoubleScalarSerializer() |
| Modifier and Type | Method and Description |
|---|---|
S |
deSerialize(byte[] buffer,
Pointer pointer,
EndianUtil endianUtil)
Deserialize an object of type T.
|
void |
serialize(S ads,
byte[] buffer,
Pointer pointer,
EndianUtil endianUtil)
Serialize an object of type T; not including the prefix byte(s).
|
int |
size(S ads)
Compute the number of bytes needed to serialize an object of type T (excluding the byte(s) that indicate that an object
of type T is next in the data stream).
|
encodeUnit, getUnitgetNumberOfDimensions, serializeWithPrefix, sizeWithPrefixdataClassName, fieldType, toStringpublic int size(S ads) throws SerializationException
ads - T; Instance of the objectSerializationException - when the object cannot be serializedpublic void serialize(S ads, byte[] buffer, Pointer pointer, EndianUtil endianUtil) throws SerializationException
ads - T; the object to serializebuffer - byte[]; buffer for the serialized Tpointer - Pointer; position in buffer where the first byte of the serialized T will be storedendianUtil - EndianUtil; selects bigEndian or littleEndian encodingSerializationException - when a matrix has size zero or is jaggedpublic S deSerialize(byte[] buffer, Pointer pointer, EndianUtil endianUtil) throws SerializationException
pointer should be on the first byte of the object; i.e. just after the
prefix byte.buffer - byte[]; the bytes with serialized data that must be reconstructed into a Tpointer - Pointer; position in the buffer where the first byte of the serialized T is locatedendianUtil - EndianUtil; selects bigEndian or littleEndian encodingSerializationException - when the input data cannot be deserializedCopyright © 2018–2019 Delft University of Technology. All rights reserved.