public enum Arch extends Enum<Arch>
| Enum Constant and Description |
|---|
AARCH64 |
ARM |
I386 |
MIPS |
MIPS_64 |
MIPS_64_EL |
MIPS_EL |
X86_64 |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Arch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Arch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Arch X86_64
public static final Arch I386
public static final Arch ARM
public static final Arch AARCH64
public static final Arch MIPS_EL
public static final Arch MIPS
public static final Arch MIPS_64_EL
public static final Arch MIPS_64
public final String archName
public static Arch[] values()
for (Arch c : Arch.values()) System.out.println(c);
public static Arch 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 nullCopyright © 2019. All rights reserved.