protected static enum PathData.FileTypeRequirement extends Enum<PathData.FileTypeRequirement>
Enum Constant and Description |
---|
SHOULD_BE_DIRECTORY |
SHOULD_NOT_BE_DIRECTORY |
Modifier and Type | Method and Description |
---|---|
static PathData.FileTypeRequirement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathData.FileTypeRequirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathData.FileTypeRequirement SHOULD_NOT_BE_DIRECTORY
public static final PathData.FileTypeRequirement SHOULD_BE_DIRECTORY
public static PathData.FileTypeRequirement[] values()
for (PathData.FileTypeRequirement c : PathData.FileTypeRequirement.values()) System.out.println(c);
public static PathData.FileTypeRequirement 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 © 2013 Apache Software Foundation. All rights reserved.