public enum CPU_A64 extends Enum<CPU_A64>
| Modifier and Type | Method and Description |
|---|---|
static CPU_A64 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CPU_A64[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CPU_A64 Aarch32
public static final CPU_A64 Aarch64
public static final CPU_A64 X86_32
public static final CPU_A64 X86_64
public static CPU_A64[] values()
for (CPU_A64 c : CPU_A64.values()) System.out.println(c);
public static CPU_A64 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 © 2018. All rights reserved.