public enum Architecture extends Enum<Architecture>
| Enum Constant and Description |
|---|
AARCH64 |
ALPHA |
ARM |
I386 |
IA64 |
IP |
M68K |
MIPS |
MIPSEL |
MK68KMINT |
NOARCH |
PPC |
PPC64 |
PPC64LE |
RS6000 |
S390 |
S390X |
SH |
SPARC |
SPARC64 |
X86_64 |
XTENSA |
| Modifier and Type | Method and Description |
|---|---|
static Architecture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Architecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Architecture NOARCH
public static final Architecture I386
public static final Architecture ALPHA
public static final Architecture SPARC
public static final Architecture MIPS
public static final Architecture PPC
public static final Architecture M68K
public static final Architecture IP
public static final Architecture RS6000
public static final Architecture IA64
public static final Architecture SPARC64
public static final Architecture MIPSEL
public static final Architecture ARM
public static final Architecture MK68KMINT
public static final Architecture S390
public static final Architecture S390X
public static final Architecture PPC64
public static final Architecture SH
public static final Architecture XTENSA
public static final Architecture X86_64
public static final Architecture PPC64LE
public static final Architecture AARCH64
public static Architecture[] values()
for (Architecture c : Architecture.values()) System.out.println(c);
public static Architecture 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 © 2021. All Rights Reserved.