public enum PathRenameFlag extends java.lang.Enum<PathRenameFlag>
| Enum Constant and Description |
|---|
None
No flag set.
|
NoReplace
Do not replace anything.
|
NoSymlinks
Don't allow symbolic links as part of the path.
|
Replace
This will replace attempt any target which isn't a directory.
|
| Modifier and Type | Method and Description |
|---|---|
static PathRenameFlag |
fromValue(long v) |
static PathRenameFlag |
fromValue(java.lang.String v) |
int |
value() |
static PathRenameFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathRenameFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathRenameFlag None
public static final PathRenameFlag NoReplace
public static final PathRenameFlag Replace
public static final PathRenameFlag NoSymlinks
public static PathRenameFlag[] values()
for (PathRenameFlag c : PathRenameFlag.values()) System.out.println(c);
public static PathRenameFlag 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 PathRenameFlag fromValue(long v)
public static PathRenameFlag fromValue(java.lang.String v)