public enum SymlinkReadFlag extends java.lang.Enum<SymlinkReadFlag>
Enum Constant and Description |
---|
None
No flags set.
|
NoSymlinks
Don't allow symbolic links as part of the path.
|
Modifier and Type | Method and Description |
---|---|
static SymlinkReadFlag |
fromValue(long v) |
static SymlinkReadFlag |
fromValue(java.lang.String v) |
int |
value() |
static SymlinkReadFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SymlinkReadFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymlinkReadFlag None
public static final SymlinkReadFlag NoSymlinks
public static SymlinkReadFlag[] values()
for (SymlinkReadFlag c : SymlinkReadFlag.values()) System.out.println(c);
public static SymlinkReadFlag 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 SymlinkReadFlag fromValue(long v)
public static SymlinkReadFlag fromValue(java.lang.String v)