|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FsObjType>
org.virtualbox_4_2.FsObjType
public 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 |
---|
public static final FsObjType Undefined
public static final FsObjType FIFO
public static final FsObjType DevChar
public static final FsObjType DevBlock
public static final FsObjType Directory
public static final FsObjType File
public static final FsObjType Symlink
public static final FsObjType Socket
public static final FsObjType Whiteout
Method Detail |
---|
public static FsObjType[] values()
for (FsObjType c : FsObjType.values()) System.out.println(c);
public static FsObjType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static FsObjType fromValue(long v)
public static FsObjType fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |