Package | Description |
---|---|
com.esotericsoftware.kryo |
Modifier and Type | Method and Description |
---|---|
Kryo.RegisteredClass |
Kryo.getRegisteredClass(java.lang.Class type)
Returns the registration information for the specified class.
|
Kryo.RegisteredClass |
Kryo.getRegisteredClass(int classID) |
Kryo.RegisteredClass |
Kryo.readClass(java.nio.ByteBuffer buffer)
Reads the class from the buffer.
|
Kryo.RegisteredClass |
Kryo.register(java.lang.Class type)
Registers a class with an ordinal, automatically determining the serializer to use.
|
Kryo.RegisteredClass |
Kryo.register(java.lang.Class type,
Serializer serializer)
Registers a class with an ordinal.
|
Kryo.RegisteredClass |
Kryo.register(java.lang.Class type,
Serializer serializer,
boolean useClassNameString)
Registers a class for serialization.
|
Kryo.RegisteredClass |
Kryo.writeClass(java.nio.ByteBuffer buffer,
java.lang.Class type)
Writes the specified class to the buffer.
|
Modifier and Type | Method and Description |
---|---|
void |
Kryo.register(java.lang.Class type,
Kryo.RegisteredClass registeredClass)
Registers a class with the ordinal of the specified registered class.
|