public static enum ElfSectionHeader.SHType extends Enum<ElfSectionHeader.SHType>
Enum Constant and Description |
---|
SHT_DYNAMIC |
SHT_DYNSYM |
SHT_GNU_VERDEF |
SHT_GNU_VERNEED |
SHT_GNU_VERSYM |
SHT_HASH |
SHT_NOBITS |
SHT_NOTE |
SHT_NULL |
SHT_PROGBITS |
SHT_REL |
SHT_RELA |
SHT_SHLIB |
SHT_STRTAB |
SHT_SYMTAB |
SHT_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ElfSectionHeader.SHType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElfSectionHeader.SHType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElfSectionHeader.SHType SHT_NULL
public static final ElfSectionHeader.SHType SHT_PROGBITS
public static final ElfSectionHeader.SHType SHT_SYMTAB
public static final ElfSectionHeader.SHType SHT_STRTAB
public static final ElfSectionHeader.SHType SHT_RELA
public static final ElfSectionHeader.SHType SHT_HASH
public static final ElfSectionHeader.SHType SHT_DYNAMIC
public static final ElfSectionHeader.SHType SHT_NOTE
public static final ElfSectionHeader.SHType SHT_NOBITS
public static final ElfSectionHeader.SHType SHT_REL
public static final ElfSectionHeader.SHType SHT_SHLIB
public static final ElfSectionHeader.SHType SHT_DYNSYM
public static final ElfSectionHeader.SHType SHT_GNU_VERNEED
public static final ElfSectionHeader.SHType SHT_GNU_VERDEF
public static final ElfSectionHeader.SHType SHT_GNU_VERSYM
public static final ElfSectionHeader.SHType SHT_UNKNOWN
public static ElfSectionHeader.SHType[] values()
for (ElfSectionHeader.SHType c : ElfSectionHeader.SHType.values()) System.out.println(c);
public static ElfSectionHeader.SHType 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 int getValue()