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
public abstract class BasicSerializer<T> extends Object implements Serializer<T>
Basics of the serializerCopyright (c) 2019-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.- Version:
- $Revision$, $LastChangedDate$, by $Author$,
- Author:
- Alexander Verbraeck, Peter Knoppers
-
-
Constructor Summary
Constructors Constructor Description BasicSerializer(byte type, String dataClassName)Construct the BasicSerializer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringdataClassName()Return a description of the type of data that this serializer handles.bytefieldType()Return the byte representation of the field type.StringtoString()-
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 Detail
-
BasicSerializer
public BasicSerializer(byte type, String dataClassName)Construct the BasicSerializer.- Parameters:
type- byte; the field type (returned by thefieldTypemethod)dataClassName- String; returned by the dataClassName method
-
-
Method Detail
-
fieldType
public final byte fieldType()
Return the byte representation of the field type.- Specified by:
fieldTypein interfaceSerializer<T>- Returns:
- byte
-
dataClassName
public final String dataClassName()
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:
dataClassNamein interfaceSerializer<T>- Returns:
- String; description of the type of data that this serializer handles
-
-