public static enum OsInfo.Architecture extends java.lang.Enum<OsInfo.Architecture>
| Enum Constant and Description |
|---|
ARM
ARM.
|
X86
Intel x86 and derivatives, including AMD64.
|
| Modifier and Type | Method and Description |
|---|---|
static OsInfo.Architecture |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OsInfo.Architecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OsInfo.Architecture X86
public static final OsInfo.Architecture ARM
public static OsInfo.Architecture[] values()
for (OsInfo.Architecture c : OsInfo.Architecture.values()) System.out.println(c);
public static OsInfo.Architecture 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 nullCopyright © 2004-2018 FEUP-LSTS and Neptus developers. All Rights Reserved.