Record Class Omf2or4

java.lang.Object
java.lang.Record
ghidra.app.util.bin.format.omf.Omf2or4
Record Components:
length - 2 or 4
value - The 2 or 4 byte value
All Implemented Interfaces:
StructConverter

public record Omf2or4(int length, long value) extends Record implements StructConverter
An OMF value that is either 2 or 4 bytes
  • Constructor Details

    • Omf2or4

      public Omf2or4(int length, long value)
      Creates an instance of a Omf2or4 record class.
      Parameters:
      length - the value for the length record component
      value - the value for the value record component
  • Method Details

    • 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
      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:
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • length

      public int length()
      Returns the value of the length record component.
      Returns:
      the value of the length record component
    • value

      public long value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component