public enum SymlinkType extends java.lang.Enum<SymlinkType>
{37794668-F8F1-4714-98A5-6F8FA2ED0118}
Enum Constant and Description |
---|
Directory
The link targets a directory.
|
File
The link targets a file (or whatever else except directories).
|
Unknown
It is not known what is being targeted.
|
Modifier and Type | Method and Description |
---|---|
static SymlinkType |
fromValue(long v) |
static SymlinkType |
fromValue(java.lang.String v) |
int |
value() |
static SymlinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SymlinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymlinkType Unknown
public static final SymlinkType Directory
public static final SymlinkType File
public static SymlinkType[] values()
for (SymlinkType c : SymlinkType.values()) System.out.println(c);
public static SymlinkType 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 SymlinkType fromValue(long v)
public static SymlinkType fromValue(java.lang.String v)