Examples of AsmStringField


Examples of com.esotericsoftware.kryo.serializers.AsmCacheFields.AsmStringField

      else {
        cachedField = new AsmObjectField(ser);
      }
    } else if (fieldClass == String.class
      && (!ser.kryo.getReferences() || !ser.kryo.getReferenceResolver().useReferences(String.class))) {
      cachedField = new AsmStringField();
    } else {
      cachedField = new AsmObjectField(ser);
    }
    return cachedField;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.