Enum DwarfEHDataDecodeFormat
- java.lang.Object
-
- java.lang.Enum<DwarfEHDataDecodeFormat>
-
- ghidra.app.plugin.exceptionhandlers.gcc.DwarfEHDataDecodeFormat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DwarfEHDataDecodeFormat>
public enum DwarfEHDataDecodeFormat extends java.lang.Enum<DwarfEHDataDecodeFormat>
Exception handling data decoding formats. See the Linux Standard Base DWARF extensions specification for details.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DW_EH_PE_absptr
DW_EH_PE_omit
DW_EH_PE_sdata2
DW_EH_PE_sdata4
DW_EH_PE_sdata8
DW_EH_PE_signed
DW_EH_PE_sleb128
DW_EH_PE_udata2
DW_EH_PE_udata4
DW_EH_PE_udata8
DW_EH_PE_uleb128
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
Get the code for this decode format.static DwarfEHDataDecodeFormat
valueOf(int code)
Gets the exception handling decode format for the indicated code.static DwarfEHDataDecodeFormat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DwarfEHDataDecodeFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DW_EH_PE_absptr
public static final DwarfEHDataDecodeFormat DW_EH_PE_absptr
-
DW_EH_PE_uleb128
public static final DwarfEHDataDecodeFormat DW_EH_PE_uleb128
-
DW_EH_PE_udata2
public static final DwarfEHDataDecodeFormat DW_EH_PE_udata2
-
DW_EH_PE_udata4
public static final DwarfEHDataDecodeFormat DW_EH_PE_udata4
-
DW_EH_PE_udata8
public static final DwarfEHDataDecodeFormat DW_EH_PE_udata8
-
DW_EH_PE_signed
public static final DwarfEHDataDecodeFormat DW_EH_PE_signed
-
DW_EH_PE_sleb128
public static final DwarfEHDataDecodeFormat DW_EH_PE_sleb128
-
DW_EH_PE_sdata2
public static final DwarfEHDataDecodeFormat DW_EH_PE_sdata2
-
DW_EH_PE_sdata4
public static final DwarfEHDataDecodeFormat DW_EH_PE_sdata4
-
DW_EH_PE_sdata8
public static final DwarfEHDataDecodeFormat DW_EH_PE_sdata8
-
DW_EH_PE_omit
public static final DwarfEHDataDecodeFormat DW_EH_PE_omit
-
-
Method Detail
-
values
public static DwarfEHDataDecodeFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DwarfEHDataDecodeFormat c : DwarfEHDataDecodeFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DwarfEHDataDecodeFormat valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getCode
public int getCode()
Get the code for this decode format.- Returns:
- the identifier code
-
valueOf
public static DwarfEHDataDecodeFormat valueOf(int code)
Gets the exception handling decode format for the indicated code.- Parameters:
code
- the code- Returns:
- the decode format
-
-