org.virtualbox_4_2
Enum FsObjType

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

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

TODO Interface ID: {A1ED437C-B3C3-4CA2-B19C-4239D658D5E8}


Enum Constant Summary
DevBlock
          TODO
DevChar
          TODO
Directory
          TODO
FIFO
          TODO
File
          TODO
Socket
          TODO
Symlink
          TODO
Undefined
          TODO
Whiteout
          TODO
 
Method Summary
static FsObjType fromValue(long v)
           
static FsObjType fromValue(java.lang.String v)
           
 int value()
           
static FsObjType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FsObjType[] 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 FsObjType Undefined
TODO


FIFO

public static final FsObjType FIFO
TODO


DevChar

public static final FsObjType DevChar
TODO


DevBlock

public static final FsObjType DevBlock
TODO


Directory

public static final FsObjType Directory
TODO


File

public static final FsObjType File
TODO


Symlink

public static final FsObjType Symlink
TODO


Socket

public static final FsObjType Socket
TODO


Whiteout

public static final FsObjType Whiteout
TODO

Method Detail

values

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

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

valueOf

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

fromValue

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