Class OmfIteratedData

All Implemented Interfaces:
StructConverter, Comparable<OmfData>

public class OmfIteratedData extends OmfData
  • Field Details

  • Constructor Details

  • Method Details

    • parseData

      public void parseData() throws IOException, OmfException
      Description copied from class: OmfRecord
      Parses this OmfRecord's type-spefic data
      Specified by:
      parseData in class OmfRecord
      Throws:
      IOException - if there was an IO-related error
      OmfException - if there was a problem with the OMF specification
    • isAllZeroes

      public boolean isAllZeroes()
      Specified by:
      isAllZeroes in class OmfData
      Returns:
      true if this is a block entirely of zeroes
    • getLength

      public int getLength()
      Specified by:
      getLength in class OmfData
      Returns:
      the length of this data in bytes
    • getByteArray

      public byte[] getByteArray(BinaryReader reader) throws IOException
      Description copied from class: OmfData
      Create a byte array holding the data represented by this object. The length of the byte array should exactly match the value returned by getLength()
      Specified by:
      getByteArray in class OmfData
      Parameters:
      reader - is for pulling bytes directly from the binary image
      Returns:
      allocated and filled byte array
      Throws:
      IOException - for problems accessing data through the reader
    • toDataType

      public DataType toDataType() throws DuplicateNameException, IOException
      Description copied from interface: StructConverter
      Returns a structure datatype representing the contents of the implementor of this interface.

      For example, given:

       class A {
           int foo;
           double bar;
       }
       

      The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.

      Specified by:
      toDataType in interface StructConverter
      Specified by:
      toDataType in class OmfRecord
      Returns:
      returns a structure datatype representing the implementor of this interface
      Throws:
      DuplicateNameException - when a datatype of the same name already exists
      IOException - if an IO-related error occurs
      See Also: