public static enum LibUtils.ARCHType extends java.lang.Enum<LibUtils.ARCHType>
| Enum Constant and Description |
|---|
ARM |
MIPS |
PPC |
PPC_64 |
RISC |
SPARC |
UNKNOWN |
X86 |
X86_64 |
| Modifier and Type | Method and Description |
|---|---|
static LibUtils.ARCHType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LibUtils.ARCHType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LibUtils.ARCHType PPC
public static final LibUtils.ARCHType PPC_64
public static final LibUtils.ARCHType SPARC
public static final LibUtils.ARCHType X86
public static final LibUtils.ARCHType X86_64
public static final LibUtils.ARCHType ARM
public static final LibUtils.ARCHType MIPS
public static final LibUtils.ARCHType RISC
public static final LibUtils.ARCHType UNKNOWN
public static LibUtils.ARCHType[] values()
for (LibUtils.ARCHType c : LibUtils.ARCHType.values()) System.out.println(c);
public static LibUtils.ARCHType 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