public static enum ElfSymbolTable.Entry.Info.Type extends Enum<ElfSymbolTable.Entry.Info.Type>
Enum Constant and Description |
---|
STT_COMMON |
STT_FILE |
STT_FUNC |
STT_NOTYPE |
STT_OBJECT |
STT_SECTION |
STT_TLS |
Modifier and Type | Method and Description |
---|---|
static ElfSymbolTable.Entry.Info.Type |
ofIntValue(int val) |
static ElfSymbolTable.Entry.Info.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElfSymbolTable.Entry.Info.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElfSymbolTable.Entry.Info.Type STT_NOTYPE
public static final ElfSymbolTable.Entry.Info.Type STT_OBJECT
public static final ElfSymbolTable.Entry.Info.Type STT_FUNC
public static final ElfSymbolTable.Entry.Info.Type STT_SECTION
public static final ElfSymbolTable.Entry.Info.Type STT_FILE
public static final ElfSymbolTable.Entry.Info.Type STT_COMMON
public static final ElfSymbolTable.Entry.Info.Type STT_TLS
public static ElfSymbolTable.Entry.Info.Type[] values()
for (ElfSymbolTable.Entry.Info.Type c : ElfSymbolTable.Entry.Info.Type.values()) System.out.println(c);
public static ElfSymbolTable.Entry.Info.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ElfSymbolTable.Entry.Info.Type ofIntValue(int val)