public enum DirectoryCopyFlag extends java.lang.Enum<DirectoryCopyFlag>
Enum Constant and Description |
---|
CopyIntoExisting
Allow copying into an existing destination directory.
|
None
No flag set.
|
Modifier and Type | Method and Description |
---|---|
static DirectoryCopyFlag |
fromValue(long v) |
static DirectoryCopyFlag |
fromValue(java.lang.String v) |
int |
value() |
static DirectoryCopyFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectoryCopyFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectoryCopyFlag None
public static final DirectoryCopyFlag CopyIntoExisting
public static DirectoryCopyFlag[] values()
for (DirectoryCopyFlag c : DirectoryCopyFlag.values()) System.out.println(c);
public static DirectoryCopyFlag 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 DirectoryCopyFlag fromValue(long v)
public static DirectoryCopyFlag fromValue(java.lang.String v)