public static enum PathFilter.Result extends Enum<PathFilter.Result>
| Enum Constant and Description |
|---|
EXCLUDE
Exclude the path and subtree for processing
|
INCLUDE
Include the path for processing
|
TRAVERSE
Do not process the path but just perform traversal to
child nodes.
|
| Modifier and Type | Method and Description |
|---|---|
static PathFilter.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathFilter.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathFilter.Result INCLUDE
public static final PathFilter.Result EXCLUDE
public static final PathFilter.Result TRAVERSE
public static PathFilter.Result[] values()
for (PathFilter.Result c : PathFilter.Result.values()) System.out.println(c);
public static PathFilter.Result 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–2018 The Apache Software Foundation. All rights reserved.