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