public static enum ElfSymbolTable.Entry.Info.Bind extends Enum<ElfSymbolTable.Entry.Info.Bind>
Enum Constant and Description |
---|
STB_GLOBAL |
STB_LOCAL |
STB_WEAK |
Modifier and Type | Method and Description |
---|---|
static ElfSymbolTable.Entry.Info.Bind |
ofIntValue(int val) |
static ElfSymbolTable.Entry.Info.Bind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElfSymbolTable.Entry.Info.Bind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElfSymbolTable.Entry.Info.Bind STB_LOCAL
public static final ElfSymbolTable.Entry.Info.Bind STB_GLOBAL
public static final ElfSymbolTable.Entry.Info.Bind STB_WEAK
public static ElfSymbolTable.Entry.Info.Bind[] values()
for (ElfSymbolTable.Entry.Info.Bind c : ElfSymbolTable.Entry.Info.Bind.values()) System.out.println(c);
public static ElfSymbolTable.Entry.Info.Bind 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.Bind ofIntValue(int val)