Serializer
for lists created via Arrays.asList(Object...)
.CGLibProxyFormat#canConvert(Class)
.Serializer
for List
s created via Collections.emptyList()
or that were just assigned the Collections.EMPTY_LIST
.Serializer
for Map
s created via Collections.emptyMap()
or that were just assigned the Collections.EMPTY_MAP
.Serializer
for Map
s created via Collections.emptySet()
or that were just assigned the Collections.EMPTY_SET
.CompatibleFieldSerializer
specialization that uses sun's ReflectionFactory
to create
new instances for classes without a default constructor (via reuse of
KryoReflectionFactorySupport.newInstanceFromReflectionFactory(Class)
).Serializer
that creates a copy of the source collection for writing object data.Serializer
that creates a copy of the source map for writing object data.Serializer
for Date
and subclasses.EnumMap
s.EnumSet
s.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).java.lang.reflect.Proxy.newProxyInstance
).DateTime
, that stores the millis, chronology and
time zone as separate attributes.Kryo
specialization that uses sun's ReflectionFactory
to create
new instance for classes without a default constructor.SynchronizedCollectionsSerializer
and registers its serializer
for the several synchronized Collections that can be created via Collections
,
including Map
s.UnmodifiableCollectionsSerializer
and registers its serializer
for the several unmodifiable Collections that can be created via Collections
,
including Map
s.Serializer
s for lists created via List.subList(int, int)
.ArrayList.subList(int, int)
since java7 (oracle jdk,
represented by java.util.ArrayList$SubList
).AbstractList.subList(int, int)
, e.g.Copyright © 2010–2018. All rights reserved.