public static enum MinElf.ISA extends java.lang.Enum<MinElf.ISA>
| Enum Constant and Description |
|---|
AARCH64 |
ARM |
NOT_SO |
OTHERS |
X86 |
X86_64 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static MinElf.ISA |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MinElf.ISA[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinElf.ISA NOT_SO
public static final MinElf.ISA X86
public static final MinElf.ISA ARM
public static final MinElf.ISA X86_64
public static final MinElf.ISA AARCH64
public static final MinElf.ISA OTHERS
public static MinElf.ISA[] values()
for (MinElf.ISA c : MinElf.ISA.values()) System.out.println(c);
public static MinElf.ISA valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<MinElf.ISA>