org.virtualbox_7_1
Enum DirectoryStatus

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

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

Directory statuses. Interface ID: {A50CA1FC-85A9-4A7A-B755-68C3DB01CAF1}


Enum Constant Summary
Close
          Guest directory has been closed.
Down
          Service/OS is stopping, guest directory was closed.
Error
          Something went wrong.
Open
          Guest directory has been successfully opened.
Rewind
          Guest directory reading was rewound.
Undefined
          Directory is in an undefined state.
 
Method Summary
static DirectoryStatus fromValue(long v)
           
static DirectoryStatus fromValue(java.lang.String v)
           
 int value()
           
static DirectoryStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DirectoryStatus[] 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

Undefined

public static final DirectoryStatus Undefined
Directory is in an undefined state.


Open

public static final DirectoryStatus Open
Guest directory has been successfully opened.


Close

public static final DirectoryStatus Close
Guest directory has been closed.


Rewind

public static final DirectoryStatus Rewind
Guest directory reading was rewound.


Down

public static final DirectoryStatus Down
Service/OS is stopping, guest directory was closed.


Error

public static final DirectoryStatus Error
Something went wrong.

Method Detail

values

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

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

valueOf

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

fromValue

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