Record Class ByteMatcher.ByteMatch
java.lang.Object
java.lang.Record
ghidra.features.base.memsearch.matcher.ByteMatcher.ByteMatch
- Enclosing class:
ByteMatcher
Record class to contain a match specification.
-
Constructor Summary
ConstructorDescriptionByteMatch
(int start, int length) Creates an instance of aByteMatch
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
length()
Returns the value of thelength
record component.int
start()
Returns the value of thestart
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ByteMatch
public ByteMatch(int start, int length) Creates an instance of aByteMatch
record class.- Parameters:
start
- the value for thestart
record componentlength
- the value for thelength
record component
-
-
Method Details
-
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. -
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. -
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. All components in this record class are compared with '=='. -
start
public int start()Returns the value of thestart
record component.- Returns:
- the value of the
start
record component
-
length
public int length()Returns the value of thelength
record component.- Returns:
- the value of the
length
record component
-