public static enum PathFilter.Result extends java.lang.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(java.lang.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(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 null"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"