public enum WindowsArchitecture extends java.lang.Enum<WindowsArchitecture>
| Enum Constant and Description |
|---|
ARM
arm
|
NEUTRAL
neutral
|
NONE
none
|
UNEXPECTED_VALUE
For WindowsArchitecture values that were not expected from the service
|
X64
x64
|
X86
x86
|
| Modifier and Type | Method and Description |
|---|---|
static WindowsArchitecture |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowsArchitecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowsArchitecture NONE
public static final WindowsArchitecture X86
public static final WindowsArchitecture X64
public static final WindowsArchitecture ARM
public static final WindowsArchitecture NEUTRAL
public static final WindowsArchitecture UNEXPECTED_VALUE
public static WindowsArchitecture[] values()
for (WindowsArchitecture c : WindowsArchitecture.values()) System.out.println(c);
public static WindowsArchitecture 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