Package elki.data.type
Class TypeInformationSerializer.SimpleTypeSerializer
- java.lang.Object
-
- elki.data.type.TypeInformationSerializer.SimpleTypeSerializer
-
- All Implemented Interfaces:
ByteBufferSerializer<SimpleTypeInformation<?>>
- Enclosing class:
- TypeInformationSerializer
static class TypeInformationSerializer.SimpleTypeSerializer extends java.lang.Object implements ByteBufferSerializer<SimpleTypeInformation<?>>
Serialization class for pure simple types.- Author:
- Erich Schubert
-
-
Constructor Summary
Constructors Constructor Description SimpleTypeSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SimpleTypeInformation<?>
fromByteBuffer(java.nio.ByteBuffer buffer)
Deserialize an object from a byte buffer (e.g., disk)int
getByteSize(SimpleTypeInformation<?> object)
Get the size of the object in bytes.void
toByteBuffer(java.nio.ByteBuffer buffer, SimpleTypeInformation<?> object)
Serialize the object to a byte array (e.g., disk)
-
-
-
Method Detail
-
fromByteBuffer
public SimpleTypeInformation<?> fromByteBuffer(java.nio.ByteBuffer buffer) throws java.io.IOException
Description copied from interface:ByteBufferSerializer
Deserialize an object from a byte buffer (e.g., disk)- Specified by:
fromByteBuffer
in interfaceByteBufferSerializer<SimpleTypeInformation<?>>
- Parameters:
buffer
- Data array to process- Returns:
- Deserialized object
- Throws:
java.io.IOException
- on IO errors
-
toByteBuffer
public void toByteBuffer(java.nio.ByteBuffer buffer, SimpleTypeInformation<?> object) throws java.io.IOException
Description copied from interface:ByteBufferSerializer
Serialize the object to a byte array (e.g., disk)- Specified by:
toByteBuffer
in interfaceByteBufferSerializer<SimpleTypeInformation<?>>
- Parameters:
buffer
- Buffer to serialize toobject
- Object to serialize- Throws:
java.io.IOException
- on IO errors
-
getByteSize
public int getByteSize(SimpleTypeInformation<?> object) throws java.io.IOException
Description copied from interface:ByteBufferSerializer
Get the size of the object in bytes.- Specified by:
getByteSize
in interfaceByteBufferSerializer<SimpleTypeInformation<?>>
- Parameters:
object
- Object to serialize- Returns:
- maximum size in serialized form
- Throws:
java.io.IOException
- on IO errors
-
-