Class IFFData

java.lang.Object
edu.nps.moves.dis7.pdus.IFFData
All Implemented Interfaces:
Serializable

public class IFFData extends Object implements Serializable
repeating element in IFF Data specification record IEEE Std 1278.1-2012, IEEE Standard for Distributed Interactive Simulation - Application Protocols
See Also:
Serialized Form
  • Field Details

    • recordType

      protected VariableRecordType recordType
      enumeration for type of record uid 66
    • recordLength

      protected short recordLength
      length of record, including padding
    • recordSpecificFields

      protected byte[] recordSpecificFields
      recordSpecificFields is an undescribed parameter...
  • Constructor Details

    • IFFData

      public IFFData()
      Constructor creates and configures a new instance object
  • Method Details

    • getMarshalledSize

      public int getMarshalledSize()
      Returns size of this serialized (marshalled) object in bytes
      Returns:
      serialized size in bytes
      See Also:
      https://en.wikipedia.org/wiki/Marshalling_(computer_science)
    • setRecordType

      public IFFData setRecordType(VariableRecordType pRecordType)
      Setter for recordType
      Parameters:
      pRecordType - new value of interest
      Returns:
      same object to permit progressive setters
    • getRecordType

      public VariableRecordType getRecordType()
      Getter for recordType
      Returns:
      value of interest
    • setRecordLength

      public IFFData setRecordLength(short pRecordLength)
      Setter for recordLength
      Parameters:
      pRecordLength - new value of interest
      Returns:
      same object to permit progressive setters
    • setRecordLength

      public IFFData setRecordLength(int pRecordLength)
      Utility setter for recordLength
      Parameters:
      pRecordLength - new value of interest
      Returns:
      same object to permit progressive setters
    • getRecordLength

      public short getRecordLength()
      Getter for recordLength
      Returns:
      value of interest
    • setRecordSpecificFields

      public IFFData setRecordSpecificFields(byte[] pRecordSpecificFields)
      Parameters:
      pRecordSpecificFields - new value of interest
      Returns:
      same object to permit progressive setters
    • getRecordSpecificFields

      public byte[] getRecordSpecificFields()
      Returns:
      value of interest
    • marshal

      public void marshal(DataOutputStream dos) throws Exception
      Serializes an object to a DataOutputStream.
      Parameters:
      dos - the OutputStream
      Throws:
      Exception - if something goes wrong
      See Also:
      DataOutputStream
    • unmarshal

      public int unmarshal(DataInputStream dis) throws Exception
      Deserializes an object from a DataInputStream.
      Parameters:
      dis - the InputStream
      Returns:
      marshalled serialized size in bytes
      Throws:
      Exception - if something goes wrong
      See Also:
      DataInputStream, https://en.wikipedia.org/wiki/Marshalling_(computer_science)
    • marshal

      public void marshal(ByteBuffer byteBuffer) throws Exception
      Packs an object into the ByteBuffer.
      Parameters:
      byteBuffer - The ByteBuffer at the position to begin writing
      Throws:
      BufferOverflowException - if byteBuffer is too small
      ReadOnlyBufferException - if byteBuffer is read only
      Exception - ByteBuffer-generated exception
      See Also:
      ByteBuffer
    • unmarshal

      public int unmarshal(ByteBuffer byteBuffer) throws Exception
      Unpacks a Pdu from the underlying data.
      Parameters:
      byteBuffer - The ByteBuffer at the position to begin reading
      Returns:
      marshalled serialized size in bytes
      Throws:
      BufferUnderflowException - if byteBuffer is too small
      Exception - ByteBuffer-generated exception
      See Also:
      ByteBuffer, https://en.wikipedia.org/wiki/Marshalling_(computer_science)
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • equalsImpl

      public boolean equalsImpl(Object obj)
      Compare all fields that contribute to the state, ignoring transient and static fields, for this and the supplied object
      Parameters:
      obj - the object to compare to
      Returns:
      true if the objects are equal, false otherwise.
    • toString

      public String toString()
      Overrides:
      toString in class Object