Package de.javakaffee.kryoserializers

Class Summary
ArraysAsListSerializer A kryo Serializer for lists created via Arrays.asList(Object...).
ClassSerializer A kryo Serializer for fields of type Class.
CollectionsEmptyListSerializer A kryo Serializer for Lists created via Collections.emptyList() or that were just assigned the Collections.EMPTY_LIST.
CollectionsEmptyMapSerializer A kryo Serializer for Maps created via Collections.emptyMap() or that were just assigned the Collections.EMPTY_MAP.
CollectionsEmptySetSerializer A kryo Serializer for Maps created via Collections.emptySet() or that were just assigned the Collections.EMPTY_SET.
CollectionsSingletonListSerializer A kryo Serializer for Lists created via Collections.singletonList(Object).
CollectionsSingletonMapSerializer A kryo Serializer for Lists created via Collections.singletonMap(Object, Object).
CollectionsSingletonSetSerializer A kryo Serializer for Lists created via Collections.singletonList(Object).
CopyForIterateCollectionSerializer A kryo Serializer that creates a copy of the source collection for writing object data.
CopyForIterateMapSerializer A kryo Serializer that creates a copy of the source map for writing object data.
CurrencySerializer A kryo Serializer for Currency.
EnumMapSerializer A serializer for EnumMaps.
EnumSetSerializer A serializer for EnumSets.
GregorianCalendarSerializer A more efficient kryo Serializer for GregorianCalendar instances (which are created via Calendar.getInstance() if the locale is not thai or japanese, so JapaneseImperialCalendar and BuddhistCalendar are not supported by this serializer).
JdkProxySerializer A serializer for jdk proxies (proxies created via java.lang.reflect.Proxy.newProxyInstance).
KryoReflectionFactorySupport A Kryo specialization that uses sun's ReflectionFactory to create new instance for classes without a default constructor.
ReferenceFieldSerializerReflectionFactorySupport A ReferenceFieldSerializer specialization that uses sun's ReflectionFactory to create new instances for classes without a default constructor (via reuse of KryoReflectionFactorySupport.newInstanceFromReflectionFactory(Class)).
StringBufferSerializer A kryo Serializer for StringBuffer that serializes the String representation, so that not the internal char array is serialized.
StringBuilderSerializer A kryo Serializer for StringBuilder that serializes the String representation, so that not the internal char array is serialized.
SubListSerializer A kryo Serializer for lists created via List.subList(int, int).
SynchronizedCollectionsSerializer A kryo Serializer for synchronized Collections and Maps created via Collections.
UnmodifiableCollectionsSerializer A kryo Serializer for unmodifiable Collections and Maps created via Collections.
 



Copyright © 2010-2011. All Rights Reserved.