public enum ClasspathTreeVisitResult extends java.lang.Enum<ClasspathTreeVisitResult>
Enum Constant and Description |
---|
CONTINUE
Continue visiting.
|
SKIP_SUBTREE
Continue visiting, but do not visit the subtree of the current node.
|
TERMINATE
Stop visiting.
|
Modifier and Type | Method and Description |
---|---|
static ClasspathTreeVisitResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClasspathTreeVisitResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClasspathTreeVisitResult CONTINUE
public static final ClasspathTreeVisitResult SKIP_SUBTREE
preVisitSubtree
method; otherwise
this result type is the same as returning CONTINUE
.public static final ClasspathTreeVisitResult TERMINATE
public static ClasspathTreeVisitResult[] values()
for (ClasspathTreeVisitResult c : ClasspathTreeVisitResult.values()) System.out.println(c);
public static ClasspathTreeVisitResult 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