public static enum HardwareTypes.Version.Values extends Enum<HardwareTypes.Version.Values>
enum representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
| Enum Constant and Description |
|---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
VMX_03
Represents
HardwareTypes.Version.VMX_03. |
VMX_04
Represents
HardwareTypes.Version.VMX_04. |
VMX_06
Represents
HardwareTypes.Version.VMX_06. |
VMX_07
Represents
HardwareTypes.Version.VMX_07. |
VMX_08
Represents
HardwareTypes.Version.VMX_08. |
VMX_09
Represents
HardwareTypes.Version.VMX_09. |
VMX_10
Represents
HardwareTypes.Version.VMX_10. |
VMX_11
Represents
HardwareTypes.Version.VMX_11. |
VMX_12
Represents
HardwareTypes.Version.VMX_12. |
VMX_13
Represents
HardwareTypes.Version.VMX_13. |
| Modifier and Type | Method and Description |
|---|---|
static HardwareTypes.Version.Values |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HardwareTypes.Version.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HardwareTypes.Version.Values VMX_03
HardwareTypes.Version.VMX_03.public static final HardwareTypes.Version.Values VMX_04
HardwareTypes.Version.VMX_04.public static final HardwareTypes.Version.Values VMX_06
HardwareTypes.Version.VMX_06.public static final HardwareTypes.Version.Values VMX_07
HardwareTypes.Version.VMX_07.public static final HardwareTypes.Version.Values VMX_08
HardwareTypes.Version.VMX_08.public static final HardwareTypes.Version.Values VMX_09
HardwareTypes.Version.VMX_09.public static final HardwareTypes.Version.Values VMX_10
HardwareTypes.Version.VMX_10.public static final HardwareTypes.Version.Values VMX_11
HardwareTypes.Version.VMX_11.public static final HardwareTypes.Version.Values VMX_12
HardwareTypes.Version.VMX_12.public static final HardwareTypes.Version.Values VMX_13
HardwareTypes.Version.VMX_13.public static final HardwareTypes.Version.Values _UNKNOWN
enum constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN constant, because its version
of the native Java enum lacks the new constant.public static HardwareTypes.Version.Values[] values()
for (HardwareTypes.Version.Values c : HardwareTypes.Version.Values.values()) System.out.println(c);
public static HardwareTypes.Version.Values 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 © 2016. All Rights Reserved.