org.virtualbox_4_2
Enum AdditionsUpdateFlag

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

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

Guest Additions update flags. Interface ID: {726A818D-18D6-4389-94E8-3E9E6826171A}


Enum Constant Summary
None
          No flag set.
WaitForUpdateStartOnly
          Starts the regular updating process and waits until the actual Guest Additions update inside the guest was started.
 
Method Summary
static AdditionsUpdateFlag fromValue(long v)
           
static AdditionsUpdateFlag fromValue(java.lang.String v)
           
 int value()
           
static AdditionsUpdateFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AdditionsUpdateFlag[] 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 AdditionsUpdateFlag None
No flag set.


WaitForUpdateStartOnly

public static final AdditionsUpdateFlag WaitForUpdateStartOnly
Starts the regular updating process and waits until the actual Guest Additions update inside the guest was started. This can be necessary due to needed interaction with the guest OS during the installation phase.

Method Detail

values

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

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

valueOf

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

fromValue

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