public static enum ElfHeader.EIClass extends Enum<ElfHeader.EIClass>
Enum Constant and Description |
---|
ELFCLASS32 |
ELFCLASS64 |
ELFCLASSNONE |
Modifier and Type | Method and Description |
---|---|
static ElfHeader.EIClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElfHeader.EIClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElfHeader.EIClass ELFCLASSNONE
public static final ElfHeader.EIClass ELFCLASS32
public static final ElfHeader.EIClass ELFCLASS64
public static ElfHeader.EIClass[] values()
for (ElfHeader.EIClass c : ElfHeader.EIClass.values()) System.out.println(c);
public static ElfHeader.EIClass 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 null