Package com.esotericsoftware.kryo.serializers

Examples of com.esotericsoftware.kryo.serializers.BeanSerializer


  {
    supportsCopy = true;
  }

  public void testBeanSerializer () {
    kryo.register(TestClass.class, new BeanSerializer(kryo, TestClass.class));

    TestClass test = new TestClass();
    test.setOptional(12);
    test.setNullField("value");
    test.setText("123");
View Full Code Here

TOP

Related Classes of com.esotericsoftware.kryo.serializers.BeanSerializer

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.