Package ghidra.program.model.listing
Class StackVariableComparator
java.lang.Object
ghidra.program.model.listing.StackVariableComparator
- All Implemented Interfaces:
Comparator<Object>
Compares stack variable offsets; has a static factory method to get
a StackVariableComparator.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Compares a stack variable offsets.static StackVariableComparator
get()
Returns a shared instance of a StackVariableComparator.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Constructor Details
-
StackVariableComparator
public StackVariableComparator()
-
-
Method Details
-
compare
Compares a stack variable offsets. One or both objects must be a StackVariable.- Specified by:
compare
in interfaceComparator<Object>
- Parameters:
obj1
- a StackVariable or Integerobj2
- a StackVariable or Integer- Returns:
- a negative integer, zero, or a positive integer if the first argument is less than, equal to, or greater than the second.
-
get
Returns a shared instance of a StackVariableComparator.
-