Class Vector3Serializer

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

public class Vector3Serializer extends Serializer
  • Constructor Details

    • Vector3Serializer

      public Vector3Serializer()
  • Method Details

    • readObject

      public Vector3f 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.