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>

File system object type. Interface ID: {A1ED437C-B3C3-4CA2-B19C-4239D658D5E8}


Enum Constant Summary
DevBlock
          Block device.
DevChar
          Character device.
Directory
          Directory.
FIFO
          Named pipe.
File
          File.
Socket
          Socket.
Symlink
          Symlink.
Undefined
          Type is undefined / unknown.
Whiteout
          Whiteout.
 
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
Type is undefined / unknown.


FIFO

public static final FsObjType FIFO
Named pipe.


DevChar

public static final FsObjType DevChar
Character device.


DevBlock

public static final FsObjType DevBlock
Block device.


Directory

public static final FsObjType Directory
Directory.


File

public static final FsObjType File
File.


Symlink

public static final FsObjType Symlink
Symlink.


Socket

public static final FsObjType Socket
Socket.


Whiteout

public static final FsObjType Whiteout
Whiteout.

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)