org.virtualbox_4_3
Enum VFSFileType

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

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

File types known by VFSExplorer. Interface ID: {714333CD-44E2-415F-A245-D378FA9B1242}


Enum Constant Summary
DevBlock
           
DevChar
           
Directory
           
Fifo
           
File
           
Socket
           
SymLink
           
Unknown
           
WhiteOut
           
 
Method Summary
static VFSFileType fromValue(long v)
           
static VFSFileType fromValue(java.lang.String v)
           
 int value()
           
static VFSFileType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VFSFileType[] 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 VFSFileType Unknown

Fifo

public static final VFSFileType Fifo

DevChar

public static final VFSFileType DevChar

Directory

public static final VFSFileType Directory

DevBlock

public static final VFSFileType DevBlock

File

public static final VFSFileType File

SymLink

public static final VFSFileType SymLink

Socket

public static final VFSFileType Socket

WhiteOut

public static final VFSFileType WhiteOut
Method Detail

values

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

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

valueOf

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

fromValue

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