public static enum SystemInfo.Architecture extends java.lang.Enum<SystemInfo.Architecture>
| Modifier and Type | Method and Description |
|---|---|
static SystemInfo.Architecture |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SystemInfo.Architecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemInfo.Architecture i386
public static final SystemInfo.Architecture amd64
public static SystemInfo.Architecture[] values()
for (SystemInfo.Architecture c : SystemInfo.Architecture.values()) System.out.println(c);
public static SystemInfo.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 null