public static enum Executable.ARCH extends java.lang.Enum<Executable.ARCH>
Enum Constant and Description |
---|
ia64 |
IA64 |
ppc |
PPC |
ppc_64 |
PPC_64 |
sparcv7 |
SPARCV7 |
sparcv9 |
SPARCV9 |
x86 |
X86 |
x86_64 |
X86_64 |
Modifier and Type | Method and Description |
---|---|
static Executable.ARCH |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Executable.ARCH[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Executable.ARCH X86
public static final Executable.ARCH x86
public static final Executable.ARCH X86_64
public static final Executable.ARCH x86_64
public static final Executable.ARCH PPC
public static final Executable.ARCH ppc
public static final Executable.ARCH PPC_64
public static final Executable.ARCH ppc_64
public static final Executable.ARCH IA64
public static final Executable.ARCH ia64
public static final Executable.ARCH SPARCV7
public static final Executable.ARCH sparcv7
public static final Executable.ARCH SPARCV9
public static final Executable.ARCH sparcv9
public static Executable.ARCH[] values()
for (Executable.ARCH c : Executable.ARCH.values()) System.out.println(c);
public static Executable.ARCH 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 null