Record Class Omf51Library.MemberHeader
java.lang.Object
java.lang.Record
ghidra.app.util.bin.format.omf.omf51.Omf51Library.MemberHeader
- Enclosing class:
Omf51Library
-
Constructor Summary
ConstructorsConstructorDescriptionMemberHeader(long offset, long size, String name) Creates an instance of aMemberHeaderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.longoffset()Returns the value of theoffsetrecord component.longsize()Returns the value of thesizerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MemberHeader
Creates an instance of aMemberHeaderrecord class.- Parameters:
offset- the value for theoffsetrecord componentsize- the value for thesizerecord componentname- the value for thenamerecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
offset
public long offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
size
public long size()Returns the value of thesizerecord component.- Returns:
- the value of the
sizerecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-