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