All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.djutils.serialization.serializers.ObjectSerializer Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package org.djutils.serialization.serializers;

import org.djutils.serialization.EndianUtil;
import org.djutils.serialization.SerializationException;

/**
 * Serializer for simple classes.
 * 

* 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 * @author Peter Knoppers * @param class */ public abstract class ObjectSerializer extends BasicSerializer { /** * Construct a new ObjectSerializer. * @param type byte; the field type (returned by the fieldType method) * @param dataClassName String; returned by the dataClassName method */ public ObjectSerializer(final byte type, final String dataClassName) { super(type, dataClassName); } @Override public final int sizeWithPrefix(final T object) throws SerializationException { return 1 + size(object); } @Override public final void serializeWithPrefix(final T object, final byte[] buffer, final Pointer pointer, final EndianUtil endianUtil) throws SerializationException { buffer[pointer.getAndIncrement(1)] = fieldType(); serialize(object, buffer, pointer, endianUtil); } @Override public final int getNumberOfDimensions() { return 0; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy