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,StringArraySerializer,StringMatrixSerializer
Basics of the serializer
Copyright (c) 2019-2025 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
ConstructorsConstructorDescriptionBasicSerializer(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, waitMethods inherited from interface org.djutils.serialization.serializers.Serializer
deSerialize, getNumberOfDimensions, hasUnit, serialize, serializeWithPrefix, size, sizeWithPrefix
-
Constructor Details
-
BasicSerializer
Construct the BasicSerializer.- Parameters:
type- the field type (returned by thefieldTypemethod)dataClassName- returned by the dataClassName method
-
-
Method Details
-
fieldType
public final byte fieldType()Description copied from interface:SerializerReturn the byte representation of the field type.- Specified by:
fieldTypein interfaceSerializer<T>- Returns:
- byte
-
dataClassName
Description copied from interface:SerializerReturn 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:
- description of the type of data that this serializer handles
-
toString
-