Package com.comphenix.protocol.utility

Examples of com.comphenix.protocol.utility.StreamSerializer


  /**
   * Retrieve a serializer for reading and writing ItemStacks stored in a byte array.
   * @return A instance of the serializer.
   */
  public StreamSerializer getByteArraySerializer() {
    return new StreamSerializer();
  }
View Full Code Here


   * Retrieve a utility class for serializing and deserializing Minecraft objects.
   * @return Serialization utility class.
   */
  public StreamSerializer getSerializer() {
    if (serializer == null)
      serializer = new StreamSerializer();
    return serializer;
  }
View Full Code Here

TOP

Related Classes of com.comphenix.protocol.utility.StreamSerializer

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.