Module hla.rti1516e

Interface HLAfixedRecord

All Superinterfaces:
DataElement, Iterable<DataElement>

public interface HLAfixedRecord extends DataElement, Iterable<DataElement>
Interface for the HLA data type HLAfixedRecord.
  • Method Details

    • add

      void add(DataElement dataElement)
      Adds an element to this fixed record.
      Parameters:
      dataElement - element to add
    • size

      int size()
      Returns the number of elements in this fixed record.
      Returns:
      the number of elements in this fixed record
    • get

      DataElement get(int index)
      Returns element at the specified index.
      Parameters:
      index - index of element to get
      Returns:
      the element at the specified index
    • iterator

      Iterator<DataElement> iterator()
      Returns an iterator for the elements in this fixed record.
      Specified by:
      iterator in interface Iterable<DataElement>
      Returns:
      an iterator for the elements in this fixed record.