Class RepeatCountDataType

All Implemented Interfaces:
BuiltInDataType, DataType, Dynamic, ExtensionPoint
Direct Known Subclasses:
RepeatedStringDataType

public abstract class RepeatCountDataType extends DynamicDataType
Base abstract data type for a Dynamic structure data type that contains some number of repeated data types. The first entry contains the number of repeated data types to follow. Immediately following the first element are the repeated data types. The dynamic structure looks like this: RepeatDataType number = N - two bytes, little endian RepDT1 repDT2 ... repDTN
  • Constructor Details

  • Method Details

    • getAllComponents

      protected DataTypeComponent[] getAllComponents(MemBuffer buf)
      Description copied from class: DynamicDataType
      Get all dynamic components associated with the specified MemBuffer
      Specified by:
      getAllComponents in class DynamicDataType
      Parameters:
      buf - memory buffer positioned at start of data type instance
      Returns:
      all components or null if memory data is not valid for this data type.
      See Also:
    • getValue

      public Object getValue(MemBuffer buf, Settings settings, int length)
      Description copied from interface: DataType
      Returns the interpreted data value as an instance of the advertised value class.

      For instance, Pointer data types should return an Address object (or null), or integer data types should return a Scalar object.

      Parameters:
      buf - the data buffer
      settings - the settings to use.
      length - indicates the maximum number of bytes that may be consumed by a Dynamic datatype, otherwise this value is ignored. A value of -1 may be specified to allow a Dynamic datatype to determine the length based upon the actual data bytes
      Returns:
      the data object, or null if data is invalid
    • getRepresentation

      public String getRepresentation(MemBuffer buf, Settings settings, int length)
      Description copied from interface: DataType
      Get bytes from memory in a printable format for this type.
      Parameters:
      buf - the data.
      settings - the settings to use for the representation.
      length - the number of bytes to represent.
      Returns:
      the representation of the data in this format, never null.
    • getMnemonic

      public String getMnemonic(Settings settings)
      Description copied from interface: DataType
      Get the mnemonic for this DataType.
      Specified by:
      getMnemonic in interface DataType
      Overrides:
      getMnemonic in class AbstractDataType
      Parameters:
      settings - settings which may influence the result or null
      Returns:
      the mnemonic for this DataType.