org.virtualbox_5_1
Enum GuestSessionWaitForFlag

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

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

Guest session waiting flags. Multiple flags can be combined. Interface ID: {BB7A372A-F635-4E11-A81A-E707F3A52EF5}


Enum Constant Summary
None
          No waiting flags specified.
Start
          Wait for the guest session being started.
Status
          Wait for the next guest session status change.
Terminate
          Wait for the guest session being terminated.
 
Method Summary
static GuestSessionWaitForFlag fromValue(long v)
           
static GuestSessionWaitForFlag fromValue(java.lang.String v)
           
 int value()
           
static GuestSessionWaitForFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GuestSessionWaitForFlag[] 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 GuestSessionWaitForFlag None
No waiting flags specified. Do not use this.


Start

public static final GuestSessionWaitForFlag Start
Wait for the guest session being started.


Terminate

public static final GuestSessionWaitForFlag Terminate
Wait for the guest session being terminated.


Status

public static final GuestSessionWaitForFlag Status
Wait for the next guest session status change.

Method Detail

values

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

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

valueOf

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

fromValue

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