public enum AdditionsRunLevelType extends java.lang.Enum<AdditionsRunLevelType>
Enum Constant and Description |
---|
Desktop
Per-user desktop components are loaded.
|
None
Guest Additions are not loaded.
|
System
Guest drivers are loaded.
|
Userland
Common components (such as application services) are loaded.
|
Modifier and Type | Method and Description |
---|---|
static AdditionsRunLevelType |
fromValue(long v) |
static AdditionsRunLevelType |
fromValue(java.lang.String v) |
int |
value() |
static AdditionsRunLevelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdditionsRunLevelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdditionsRunLevelType None
public static final AdditionsRunLevelType System
public static final AdditionsRunLevelType Userland
public static final AdditionsRunLevelType Desktop
public static AdditionsRunLevelType[] values()
for (AdditionsRunLevelType c : AdditionsRunLevelType.values()) System.out.println(c);
public static AdditionsRunLevelType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static AdditionsRunLevelType fromValue(long v)
public static AdditionsRunLevelType fromValue(java.lang.String v)