public enum TreeVisitResult extends Enum<TreeVisitResult>
| Enum Constant and Description |
|---|
RESULT_CONTINUE
Continue the traversal.
|
RESULT_TERMINATE
Terminate the traversal.
|
| Modifier and Type | Method and Description |
|---|---|
static TreeVisitResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeVisitResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeVisitResult RESULT_CONTINUE
public static final TreeVisitResult RESULT_TERMINATE
public static TreeVisitResult[] values()
for (TreeVisitResult c : TreeVisitResult.values()) System.out.println(c);
public static TreeVisitResult 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 © 2017 <code@io7m.com> http://io7m.com