
public enum TreeWalkerDiag extends Enum<TreeWalkerDiag>
| Enum Constant and Description |
|---|
GO |
HANDLING_CHILDREN
do not call the method on my "children" nodes.
|
STOP
stop tree walking.
|
| Modifier and Type | Method and Description |
|---|---|
static TreeWalkerDiag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeWalkerDiag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeWalkerDiag STOP
public static final TreeWalkerDiag HANDLING_CHILDREN
public static final TreeWalkerDiag GO
public static TreeWalkerDiag[] values()
for (TreeWalkerDiag c : TreeWalkerDiag.values()) System.out.println(c);
public static TreeWalkerDiag 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 © 2020 LSST. All rights reserved.