public enum AutoStartAction extends Enum<AutoStartAction>
| Enum Constant and Description |
|---|
guestShutdown |
none |
powerOff |
powerOn |
suspend |
systemDefault |
| Modifier and Type | Method and Description |
|---|---|
static AutoStartAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoStartAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoStartAction none
public static final AutoStartAction systemDefault
public static final AutoStartAction powerOn
public static final AutoStartAction powerOff
public static final AutoStartAction guestShutdown
public static final AutoStartAction suspend
public static AutoStartAction[] values()
for (AutoStartAction c : AutoStartAction.values()) System.out.println(c);
public static AutoStartAction 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 © 2011-2012. All Rights Reserved.