Class BasicSerializer<T>
java.lang.Object
org.djutils.serialization.serializers.BasicSerializer<T>
- Type Parameters:
T
- class
- All Implemented Interfaces:
Serializer<T>
- Direct Known Subclasses:
ArrayOrMatrixSerializer
,ArrayOrMatrixWithUnitSerializer
,BasicPrimitiveArrayOrMatrixSerializer
,ObjectSerializer
Basics of the serializer
Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.
- Author:
- Alexander Verbraeck, Peter Knoppers
-
Constructor Summary
ConstructorDescriptionBasicSerializer
(byte type, String dataClassName) Construct the BasicSerializer. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.djutils.serialization.serializers.Serializer
deSerialize, getNumberOfDimensions, serialize, serializeWithPrefix, size, sizeWithPrefix
-
Constructor Details
-
BasicSerializer
Construct the BasicSerializer.- Parameters:
type
- byte; the field type (returned by thefieldType
method)dataClassName
- String; returned by the dataClassName method
-
-
Method Details
-
fieldType
public final byte fieldType()Description copied from interface:Serializer
Return the byte representation of the field type.- Specified by:
fieldType
in interfaceSerializer<T>
- Returns:
- byte
-
dataClassName
Description copied from interface:Serializer
Return a description of the type of data that this serializer handles. The result of this method should not be subject to localization because it is used in the SerialDataDecoder to identify the type of a serializer.- Specified by:
dataClassName
in interfaceSerializer<T>
- Returns:
- String; description of the type of data that this serializer handles
-
toString
-