public enum VFSFileType extends java.lang.Enum<VFSFileType>
| Enum Constant and Description |
|---|
DevBlock |
DevChar |
Directory |
Fifo |
File |
Socket |
SymLink |
Unknown |
WhiteOut |
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final VFSFileType Unknown
public static final VFSFileType Fifo
public static final VFSFileType DevChar
public static final VFSFileType Directory
public static final VFSFileType DevBlock
public static final VFSFileType File
public static final VFSFileType SymLink
public static final VFSFileType Socket
public static final VFSFileType WhiteOut
public static VFSFileType[] values()
for (VFSFileType c : VFSFileType.values()) System.out.println(c);
public static VFSFileType 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 namejava.lang.NullPointerException - if the argument is nullpublic int value()
public static VFSFileType fromValue(long v)
public static VFSFileType fromValue(java.lang.String v)