Package com.esotericsoftware.kryo.serializers.DefaultSerializers

Examples of com.esotericsoftware.kryo.serializers.DefaultSerializers.ClassSerializer


   */
  private void internalInit(final Kryo kryo)
  {

    kryo.register(Arrays.asList("").getClass(), new ArraysAsListSerializer());
    kryo.register(Class.class, new ClassSerializer());
    kryo.register(Collections.EMPTY_LIST.getClass(), new CollectionsEmptyListSerializer());
    kryo.register(Collections.EMPTY_MAP.getClass(), new CollectionsEmptyMapSerializer());
    kryo.register(Collections.EMPTY_SET.getClass(), new CollectionsEmptySetSerializer());
    kryo.register(Collections.singletonList("").getClass(),
      new CollectionsSingletonListSerializer());
View Full Code Here

TOP

Related Classes of com.esotericsoftware.kryo.serializers.DefaultSerializers.ClassSerializer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.