Class BinaryValueDeserializer

java.lang.Object
kieker.common.record.io.AbstractValueDeserializer
kieker.common.record.io.BinaryValueDeserializer
All Implemented Interfaces:
IValueDeserializer

public class BinaryValueDeserializer
extends AbstractValueDeserializer
implements IValueDeserializer
Default value deserializer implementation.
Since:
1.13
Author:
Holger Knoche, Reiner Jung - enumeration support
  • Constructor Summary

    Constructors 
    Modifier Constructor Description
    protected BinaryValueDeserializer​(java.nio.ByteBuffer buffer, ReaderRegistry<java.lang.String> stringRegistry)
    Create a binary value deserializer.
  • Method Summary

    Modifier and Type Method Description
    static BinaryValueDeserializer create​(java.nio.ByteBuffer buffer, ReaderRegistry<java.lang.String> stringRegistry)
    Factory method to create a binary value deserializer.
    boolean getBoolean()
    Retrieves a boolean value from the underlying data source.
    byte getByte()
    Retrieves a byte value from the underlying data source.
    char getChar()
    Retrieves a char value from the underlying data source.
    double getDouble()
    Retrieves a double value from the underlying data source.
    <T extends java.lang.Enum<T>>
    T
    getEnumeration​(java.lang.Class<T> clazz)
    Retrieves a Enumeration value from the underlying data source.
    float getFloat()
    Retrieves a float value from the underlying data source.
    int getInt()
    Retrieves an int value from the underlying data source.
    long getLong()
    Retrieves a long value from the underlying data source.
    short getShort()
    Retrieves a short value from the underlying data source.
    java.lang.String getString()
    Retrieves a String value from the underlying data source.

    Methods inherited from class kieker.common.record.io.AbstractValueDeserializer

    enumerationValueOf

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait