public enum FileLinkType extends java.lang.Enum<FileLinkType> implements java.io.Serializable
Enum Constant and Description |
---|
DIRECTORY |
OTHER |
REGULAR_FILE |
SYMLINK |
Modifier and Type | Method and Description |
---|---|
static FileLinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileLinkType REGULAR_FILE
public static final FileLinkType DIRECTORY
public static final FileLinkType SYMLINK
public static final FileLinkType OTHER
public static FileLinkType[] values()
for (FileLinkType c : FileLinkType.values()) System.out.println(c);
public static FileLinkType 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 null