public enum HostReplayUnsupportedReason extends Enum<HostReplayUnsupportedReason>
Java class for HostReplayUnsupportedReason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="HostReplayUnsupportedReason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="incompatibleProduct"/>
<enumeration value="incompatibleCpu"/>
<enumeration value="hvDisabled"/>
<enumeration value="cpuidLimitSet"/>
<enumeration value="oldBIOS"/>
<enumeration value="unknown"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CPUID_LIMIT_SET |
HV_DISABLED |
INCOMPATIBLE_CPU |
INCOMPATIBLE_PRODUCT |
OLD_BIOS |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static HostReplayUnsupportedReason |
fromValue(String v) |
String |
value() |
static HostReplayUnsupportedReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostReplayUnsupportedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostReplayUnsupportedReason INCOMPATIBLE_PRODUCT
public static final HostReplayUnsupportedReason INCOMPATIBLE_CPU
public static final HostReplayUnsupportedReason HV_DISABLED
public static final HostReplayUnsupportedReason CPUID_LIMIT_SET
public static final HostReplayUnsupportedReason OLD_BIOS
public static final HostReplayUnsupportedReason UNKNOWN
public static HostReplayUnsupportedReason[] values()
for (HostReplayUnsupportedReason c : HostReplayUnsupportedReason.values()) System.out.println(c);
public static HostReplayUnsupportedReason 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 nullpublic String value()
public static HostReplayUnsupportedReason fromValue(String v)
Copyright © 2018. All rights reserved.