public static enum TreeNodeCallback.Result extends java.lang.Enum<TreeNodeCallback.Result>
FileVisitResult
.
This class is defined here because it runs with Java-6 too.Enum Constant and Description |
---|
cont |
skipSiblings |
skipSubtree |
terminate |
Modifier and Type | Method and Description |
---|---|
static TreeNodeCallback.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeNodeCallback.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeNodeCallback.Result cont
public static final TreeNodeCallback.Result terminate
public static final TreeNodeCallback.Result skipSiblings
public static final TreeNodeCallback.Result skipSubtree
public static TreeNodeCallback.Result[] values()
for (TreeNodeCallback.Result c : TreeNodeCallback.Result.values()) System.out.println(c);
public static TreeNodeCallback.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