org.virtualbox_7_0
Enum AdditionsRunLevelType

java.lang.Object
  extended by java.lang.Enum<AdditionsRunLevelType>
      extended by org.virtualbox_7_0.AdditionsRunLevelType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AdditionsRunLevelType>

public enum AdditionsRunLevelType
extends java.lang.Enum<AdditionsRunLevelType>

Guest Additions run level type. Interface ID: {A25417EE-A9DD-4F5B-B0DC-377860087754}


Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

None

public static final AdditionsRunLevelType None
Guest Additions are not loaded.


System

public static final AdditionsRunLevelType System
Guest drivers are loaded.


Userland

public static final AdditionsRunLevelType Userland
Common components (such as application services) are loaded.


Desktop

public static final AdditionsRunLevelType Desktop
Per-user desktop components are loaded.

Method Detail

values

public static AdditionsRunLevelType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AdditionsRunLevelType c : AdditionsRunLevelType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AdditionsRunLevelType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static AdditionsRunLevelType fromValue(long v)

fromValue

public static AdditionsRunLevelType fromValue(java.lang.String v)