Package | Description |
---|---|
org.mapdb | |
org.mapdb.serializer |
Modifier and Type | Field and Description |
---|---|
static GroupSerializer<java.math.BigDecimal> |
Serializer.BIG_DECIMAL |
static GroupSerializer<java.math.BigInteger> |
Serializer.BIG_INTEGER |
static GroupSerializer<java.lang.Boolean> |
Serializer.BOOLEAN
A predefined
Serializer that handles non-null
Booleans whereby Booleans are serialized to a one byte
format. |
static GroupSerializer<java.lang.Byte> |
Serializer.BYTE
A predefined
Serializer that handles non-null Bytes
whereby Bytes are serialized to a one byte format. |
static GroupSerializer<byte[]> |
Serializer.BYTE_ARRAY
Serializes
byte[] it adds header which contains size information |
static GroupSerializer<byte[]> |
Serializer.BYTE_ARRAY_DELTA |
static GroupSerializer<byte[]> |
Serializer.BYTE_ARRAY_DELTA2 |
static GroupSerializer<java.lang.Character> |
Serializer.CHAR
A predefined
Serializer that handles non-null
Characters . |
static GroupSerializer<char[]> |
Serializer.CHAR_ARRAY
Serializes
char[] it adds header which contains size information |
static GroupSerializer<java.lang.Class<?>> |
Serializer.CLASS |
static GroupSerializer<java.util.Date> |
Serializer.DATE |
static GroupSerializer<java.lang.Double> |
Serializer.DOUBLE
A predefined
Serializer that handles non-null
Doubles whereby Doubles are serialized to an 8 byte
format. |
static GroupSerializer<double[]> |
Serializer.DOUBLE_ARRAY
Serializes
double[] it adds header which contains size
information |
static GroupSerializer |
Serializer.ELSA |
static GroupSerializer<java.lang.Float> |
Serializer.FLOAT
A predefined
Serializer that handles non-null
Floats whereby Floats are serialized to a 4 byte format. |
static GroupSerializer<float[]> |
Serializer.FLOAT_ARRAY |
static GroupSerializer<java.lang.Object> |
Serializer.ILLEGAL_ACCESS
A predefined
Serializer that always throws an
IllegalAccessError when invoked. |
static GroupSerializer<int[]> |
Serializer.INT_ARRAY
Serializes
int[] it adds header which contains size information |
static GroupSerializer<java.lang.Integer> |
Serializer.INTEGER
A predefined
Serializer that handles non-null
Integers whereby Integers are serialized to a 4 byte
format. |
static GroupSerializer<java.lang.Integer> |
Serializer.INTEGER_DELTA
A predefined
Serializer that handles non-null
Integers whereby Integers are serialized to a compressed
byte format and neighboring Integers are delta encoded in BTreeMaps. |
static GroupSerializer<java.lang.Integer> |
Serializer.INTEGER_PACKED
A predefined
Serializer that handles non-null
Integers whereby Integers are serialized to a compressed
byte format.The Serializer also stores the Longs's size, allowing it to
be used as a GroupSerializer in BTreeMaps. |
static GroupSerializer |
Serializer.JAVA
A predefined
Serializer that handles non-null
Serializable Java objects whereby the standard Java serialization
will be applied using ObjectInputStream and
ObjectOutputStream methods. |
static GroupSerializer<java.lang.Long> |
Serializer.LONG
A predefined
Serializer that handles non-null Longs
whereby Longs are serialized to an 8 byte format. |
static GroupSerializer<long[]> |
Serializer.LONG_ARRAY
Serializes
long[] it adds header which contains size information |
static GroupSerializer<java.lang.Long> |
Serializer.LONG_DELTA
A predefined
Serializer that handles non-null Longs
whereby Longs are serialized to a compressed byte format and neighboring
Longs are delta encoded in BTreeMaps. |
static GroupSerializer<java.lang.Long> |
Serializer.LONG_PACKED
A predefined
Serializer that handles non-null Longs
whereby Longs are serialized to a compressed byte format. |
static GroupSerializer<java.lang.Long> |
Serializer.RECID
A predefined
Serializer that handles non-null Longs
used as a recid whereby recids are serialized to an eight byte format
including a checksum. |
static GroupSerializer<long[]> |
Serializer.RECID_ARRAY
A predefined
Serializer that handles non-null arrays of longs
used as a recids whereby recids are serialized to an eight byte format
including a checksum. |
static GroupSerializer<java.lang.Short> |
Serializer.SHORT
A predefined
Serializer that handles non-null
Shorts whereby Shorts are serialized to a 2 byte format. |
static GroupSerializer<short[]> |
Serializer.SHORT_ARRAY |
static GroupSerializer<java.lang.String> |
Serializer.STRING
A predefined
Serializer that handles non-null
Strings whereby Strings are serialized to a UTF-8 encoded
format. |
static GroupSerializer<java.lang.String> |
Serializer.STRING_ASCII
A predefined
Serializer that handles non-null
Strings whereby Strings are serialized to a ASCII encoded
format (8 bit character) which is faster than using a UTF-8 format. |
static GroupSerializer<java.lang.String> |
Serializer.STRING_DELTA
A predefined
Serializer that handles non-null
Strings whereby Strings are serialized to a UTF-8 encoded
format. |
static GroupSerializer<java.lang.String> |
Serializer.STRING_DELTA2
A predefined
Serializer that handles non-null
Strings whereby Strings are serialized to a UTF-8 encoded
format. |
static GroupSerializer<java.lang.String> |
Serializer.STRING_INTERN
A predefined
Serializer that handles non-null
Strings whereby Strings are serialized to a UTF-8 encoded
format. |
static GroupSerializer<java.lang.String> |
Serializer.STRING_ORIGHASH
A predefined
Serializer that handles non-null
Strings whereby Strings are serialized to a UTF-8 encoded
format. |
static GroupSerializer<java.util.UUID> |
Serializer.UUID
Serializers
UUID class |
Modifier and Type | Method and Description |
---|---|
<K> K |
BTreeMapJava.Node.highKey(GroupSerializer<K> keySerializer) |
void |
BTreeMapJava.Node.verifyNode(GroupSerializer keySerializer,
java.util.Comparator comparator,
GroupSerializer valueSerializer) |
void |
BTreeMapJava.Node.verifyNode(GroupSerializer keySerializer,
java.util.Comparator comparator,
GroupSerializer valueSerializer) |
Constructor and Description |
---|
BinaryGet(GroupSerializer<K> keySerializer,
GroupSerializer<V> valueSerializer,
java.util.Comparator<K> comparator,
K key) |
BinaryGet(GroupSerializer<K> keySerializer,
GroupSerializer<V> valueSerializer,
java.util.Comparator<K> comparator,
K key) |
Modifier and Type | Class and Description |
---|---|
class |
GroupSerializerObjectArray<A>
Created by jan on 2/29/16.
|
class |
SerializerArray<T>
Serializes an object array of non-primitive objects.
|
class |
SerializerArrayDelta<T>
Created by jan on 2/28/16.
|
class |
SerializerArrayTuple
Serializer for tuples.
|
class |
SerializerBigDecimal
Created by jan on 2/28/16.
|
class |
SerializerBigInteger
Created by jan on 2/28/16.
|
class |
SerializerBoolean
Created by jan on 2/28/16.
|
class |
SerializerByte
Created by jan on 2/28/16.
|
class |
SerializerByteArray
Created by jan on 2/28/16.
|
class |
SerializerByteArrayDelta
Created by jan on 2/29/16.
|
class |
SerializerByteArrayDelta2
Created by jan on 2/29/16.
|
class |
SerializerChar
Created by jan on 2/28/16.
|
class |
SerializerCharArray
Created by jan on 2/28/16.
|
class |
SerializerClass
Serialier for class.
|
class |
SerializerCompressionDeflateWrapper<E>
wraps another serializer and (de)compresses its output/input using Deflate
|
class |
SerializerCompressionWrapper<E>
wraps another serializer and (de)compresses its output/input
|
class |
SerializerDate
Created by jan on 2/28/16.
|
class |
SerializerDouble
Created by jan on 2/28/16.
|
class |
SerializerDoubleArray
Created by jan on 2/28/16.
|
class |
SerializerEightByte<E> |
class |
SerializerFloat
Created by jan on 2/28/16.
|
class |
SerializerFloatArray
Created by jan on 2/28/16.
|
class |
SerializerFourByte<E>
Created by jan on 2/28/16.
|
class |
SerializerIllegalAccess
Created by jan on 2/28/16.
|
class |
SerializerIntArray
Created by jan on 2/28/16.
|
class |
SerializerInteger |
class |
SerializerIntegerDelta
Created by jan on 2/28/16.
|
class |
SerializerIntegerPacked
Created by jan on 2/28/16.
|
class |
SerializerJava
Created by jan on 2/28/16.
|
class |
SerializerLong
Created by jan on 2/28/16.
|
class |
SerializerLongArray
Created by jan on 2/28/16.
|
class |
SerializerLongDelta
Created by jan on 2/28/16.
|
class |
SerializerLongPacked
Created by jan on 2/28/16.
|
class |
SerializerRecid
Created by jan on 2/28/16.
|
class |
SerializerRecidArray
Created by jan on 2/28/16.
|
class |
SerializerShort
Created by jan on 2/28/16.
|
class |
SerializerShortArray
Created by jan on 2/28/16.
|
class |
SerializerString |
class |
SerializerStringAscii
Created by jan on 2/28/16.
|
class |
SerializerStringDelta
Created by jan on 2/29/16.
|
class |
SerializerStringDelta2
Created by jan on 2/29/16.
|
class |
SerializerStringIntern
Created by jan on 2/28/16.
|
class |
SerializerStringOrigHash
Created by jan on 2/28/16.
|
class |
SerializerUUID
Created by jan on 2/28/16.
|
Modifier and Type | Field and Description |
---|---|
protected GroupSerializer<E> |
SerializerCompressionWrapper.serializer |
protected GroupSerializer<E> |
SerializerCompressionDeflateWrapper.serializer |
Constructor and Description |
---|
SerializerCompressionDeflateWrapper(GroupSerializer<E> serializer) |
SerializerCompressionDeflateWrapper(GroupSerializer<E> serializer,
int compressLevel,
byte[] dictionary) |
SerializerCompressionWrapper(GroupSerializer<E> serializer) |
Copyright © 2018. All Rights Reserved.