Class DWARFRange
java.lang.Object
ghidra.app.util.bin.format.dwarf4.DWARFRange
- All Implemented Interfaces:
Comparable<DWARFRange>
Holds the start (inclusive) and end (exclusive) addresses of a range.
-
Constructor Summary
ConstructorsConstructorDescriptionDWARFRange
(long start, long end) Constructs a newDWARFRange
using start and end values. -
Method Summary
-
Constructor Details
-
DWARFRange
public DWARFRange(long start, long end) Constructs a newDWARFRange
using start and end values.- Parameters:
start
- long starting address, inclusiveend
- long ending address, exclusive
-
-
Method Details
-
toString
-
compareTo
- Specified by:
compareTo
in interfaceComparable<DWARFRange>
-
getFrom
public long getFrom()Returns starting address.- Returns:
- long starting address
-
getTo
public long getTo()Returns ending address, exclusive.- Returns:
- long ending address, exclusive.
-