Class DWARFNumericAttribute
- java.lang.Object
-
- ghidra.app.util.bin.format.dwarf4.attribs.DWARFNumericAttribute
-
- All Implemented Interfaces:
DWARFAttributeValue
- Direct Known Subclasses:
DWARFAmbigNumericAttribute
public class DWARFNumericAttribute extends java.lang.Object implements DWARFAttributeValue
DWARF numeric attribute.Use this class instead of
DWARFAmbigNumericAttribute
when the signed-ness of the raw value is known when deserializing the attribute from a stream.Use
DWARFAmbigNumericAttribute
when the signed-ness of the raw value is only know to the code that is using the attribute value.
-
-
Field Summary
Fields Modifier and Type Field Description protected long
value
-
Constructor Summary
Constructors Constructor Description DWARFNumericAttribute(long value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getUnsignedValue()
long
getValue()
java.lang.String
toString()
-