org.virtualbox_4_1
Enum GuestDirEntryType

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

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

Guest directory entry type. Interface ID: {6D19D924-1B77-4FC8-B369-A3B2C85C8241}


Enum Constant Summary
Directory
          Regular file.
File
          Regular file.
Symlink
          Symbolic link.
Unknown
          Unknown.
 
Method Summary
static GuestDirEntryType fromValue(long v)
           
static GuestDirEntryType fromValue(java.lang.String v)
           
 int value()
           
static GuestDirEntryType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GuestDirEntryType[] 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

Unknown

public static final GuestDirEntryType Unknown
Unknown.


Directory

public static final GuestDirEntryType Directory
Regular file.


File

public static final GuestDirEntryType File
Regular file.


Symlink

public static final GuestDirEntryType Symlink
Symbolic link.

Method Detail

values

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

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

valueOf

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

fromValue

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