Class EnumNameSerializer
- java.lang.Object
-
- com.esotericsoftware.kryo.Serializer<java.lang.Enum>
-
- com.esotericsoftware.kryo.serializers.EnumNameSerializer
-
public class EnumNameSerializer extends Serializer<java.lang.Enum>
Serializes enums using the enum's name. This prevents invalidating previously serialized byts when the enum order changes.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Class<? extends java.lang.Enum>
enumType
private Serializer
stringSerializer
-
Constructor Summary
Constructors Constructor Description EnumNameSerializer(Kryo kryo, java.lang.Class<? extends java.lang.Enum> type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Enum
read(Kryo kryo, Input input, java.lang.Class<java.lang.Enum> type)
Reads bytes and returns a new object of the specified concrete type.void
write(Kryo kryo, Output output, java.lang.Enum object)
Writes the bytes for the object to the output.-
Methods inherited from class com.esotericsoftware.kryo.Serializer
copy, getAcceptsNull, isImmutable, setAcceptsNull, setGenerics, setImmutable
-
-
-
-
Field Detail
-
enumType
private final java.lang.Class<? extends java.lang.Enum> enumType
-
stringSerializer
private final Serializer stringSerializer
-
-
Constructor Detail
-
EnumNameSerializer
public EnumNameSerializer(Kryo kryo, java.lang.Class<? extends java.lang.Enum> type)
-
-
Method Detail
-
write
public void write(Kryo kryo, Output output, java.lang.Enum object)
Description copied from class:Serializer
Writes the bytes for the object to the output.This method should not be called directly, instead this serializer can be passed to
Kryo
write methods that accept a serialier.- Specified by:
write
in classSerializer<java.lang.Enum>
object
- May be null ifSerializer.getAcceptsNull()
is true.
-
read
public java.lang.Enum read(Kryo kryo, Input input, java.lang.Class<java.lang.Enum> type)
Description copied from class:Serializer
Reads bytes and returns a new object of the specified concrete type.Before Kryo can be used to read child objects,
Kryo.reference(Object)
must be called with the parent object to ensure it can be referenced by the child objects. Any serializer that usesKryo
to read a child object may need to be reentrant.This method should not be called directly, instead this serializer can be passed to
Kryo
read methods that accept a serialier.- Specified by:
read
in classSerializer<java.lang.Enum>
- Returns:
- May be null if
Serializer.getAcceptsNull()
is true.
-
-