public enum NestedDirectoryPolicy extends Enum<NestedDirectoryPolicy>
Modifier and Type | Method and Description |
---|---|
static NestedDirectoryPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NestedDirectoryPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NestedDirectoryPolicy IGNORED
public static final NestedDirectoryPolicy RECURSE
public static final NestedDirectoryPolicy FAIL
public static NestedDirectoryPolicy[] values()
for (NestedDirectoryPolicy c : NestedDirectoryPolicy.values()) System.out.println(c);
public static NestedDirectoryPolicy 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 © 2012–2022. All rights reserved.