public enum DirectoryRemoveRecFlag extends java.lang.Enum<DirectoryRemoveRecFlag>
ContentAndDir
REGARDLESS
OF THE INPUT.
Interface ID: {455AABF0-7692-48F6-9061-F21579B65769}Enum Constant and Description |
---|
ContentAndDir
Delete the content of the directory and the directory itself.
|
ContentOnly
Only delete the content of the directory, omit the directory it self.
|
None
No flag set.
|
Modifier and Type | Method and Description |
---|---|
static DirectoryRemoveRecFlag |
fromValue(long v) |
static DirectoryRemoveRecFlag |
fromValue(java.lang.String v) |
int |
value() |
static DirectoryRemoveRecFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectoryRemoveRecFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectoryRemoveRecFlag None
public static final DirectoryRemoveRecFlag ContentAndDir
public static final DirectoryRemoveRecFlag ContentOnly
public static DirectoryRemoveRecFlag[] values()
for (DirectoryRemoveRecFlag c : DirectoryRemoveRecFlag.values()) System.out.println(c);
public static DirectoryRemoveRecFlag 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 DirectoryRemoveRecFlag fromValue(long v)
public static DirectoryRemoveRecFlag fromValue(java.lang.String v)