public enum VirtualMachineTicketType extends Enum<VirtualMachineTicketType>
Java class for VirtualMachineTicketType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VirtualMachineTicketType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="mks"/>
<enumeration value="device"/>
<enumeration value="guestControl"/>
<enumeration value="webmks"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEVICE |
GUEST_CONTROL |
MKS |
WEBMKS |
| Modifier and Type | Method and Description |
|---|---|
static VirtualMachineTicketType |
fromValue(String v) |
String |
value() |
static VirtualMachineTicketType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualMachineTicketType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualMachineTicketType MKS
public static final VirtualMachineTicketType DEVICE
public static final VirtualMachineTicketType GUEST_CONTROL
public static final VirtualMachineTicketType WEBMKS
public static VirtualMachineTicketType[] values()
for (VirtualMachineTicketType c : VirtualMachineTicketType.values()) System.out.println(c);
public static VirtualMachineTicketType 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 VirtualMachineTicketType fromValue(String v)
Copyright © 2018. All rights reserved.