org.virtualbox_4_3
Enum AdditionsFacilityClass

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

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

Guest Additions facility classes. Interface ID: {446451B2-C88D-4E5D-84C9-91BC7F533F5F}


Enum Constant Summary
All
          All facility classes selected.
Driver
          Driver.
Feature
          Feature.
None
          No/invalid class.
Program
          Program.
Service
          System service.
ThirdParty
          Third party.
 
Method Summary
static AdditionsFacilityClass fromValue(long v)
           
static AdditionsFacilityClass fromValue(java.lang.String v)
           
 int value()
           
static AdditionsFacilityClass valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AdditionsFacilityClass[] 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 AdditionsFacilityClass None
No/invalid class.


Driver

public static final AdditionsFacilityClass Driver
Driver.


Service

public static final AdditionsFacilityClass Service
System service.


Program

public static final AdditionsFacilityClass Program
Program.


Feature

public static final AdditionsFacilityClass Feature
Feature.


ThirdParty

public static final AdditionsFacilityClass ThirdParty
Third party.


All

public static final AdditionsFacilityClass All
All facility classes selected.

Method Detail

values

public static AdditionsFacilityClass[] 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 (AdditionsFacilityClass c : AdditionsFacilityClass.values())
    System.out.println(c);

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

valueOf

public static AdditionsFacilityClass 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 AdditionsFacilityClass fromValue(long v)

fromValue

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