public static enum PathUtils.Strategy extends Enum<PathUtils.Strategy>
| Enum Constant and Description |
|---|
CREATE_ALWAYS |
CREATE_IF_NOT_EXISTS |
NONE |
THROW_EXCEPTION_IF_NOT_EXISTS |
| Modifier and Type | Method and Description |
|---|---|
static PathUtils.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathUtils.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathUtils.Strategy NONE
public static final PathUtils.Strategy CREATE_IF_NOT_EXISTS
public static final PathUtils.Strategy THROW_EXCEPTION_IF_NOT_EXISTS
public static final PathUtils.Strategy CREATE_ALWAYS
public static PathUtils.Strategy[] values()
for (PathUtils.Strategy c : PathUtils.Strategy.values()) System.out.println(c);
public static PathUtils.Strategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014-2015 Opoo.org. All Rights Reserved.