Class ShortSerializer

java.lang.Object
com.jme3.network.serializing.Serializer
com.jme3.network.serializing.serializers.ShortSerializer

public class ShortSerializer extends Serializer
Short serializer.
  • Constructor Details

    • ShortSerializer

      public ShortSerializer()
  • Method Details

    • readObject

      public Short readObject(ByteBuffer data, Class c) throws IOException
      Description copied from class: Serializer
      Read an object from the buffer, effectively deserializing it.
      Specified by:
      readObject in class Serializer
      Parameters:
      data - The buffer to read from.
      c - The class of the object.
      Returns:
      The object read.
      Throws:
      IOException - If deserializing fails.
    • writeObject

      public void writeObject(ByteBuffer buffer, Object object) throws IOException
      Description copied from class: Serializer
      Write an object to the buffer, effectively serializing it.
      Specified by:
      writeObject in class Serializer
      Parameters:
      buffer - The buffer to write to.
      object - The object to serialize.
      Throws:
      IOException - If serializing fails.