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