public static enum EntityVisitor.EntityVisitResult extends java.lang.Enum<EntityVisitor.EntityVisitResult>
Entity. The result may alter how the walker
processes the rest of the tree.| Enum Constant and Description |
|---|
CONTINUE
Continue to process this sub-tree.
|
EXIT
Exit all sub-trees.
|
IGNORE_CHILDREN
Make this member a leaf.
|
IGNORE_SIBLINGS
Only continue this sub-tree.
|
| Modifier and Type | Method and Description |
|---|---|
static EntityVisitor.EntityVisitResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntityVisitor.EntityVisitResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityVisitor.EntityVisitResult CONTINUE
public static final EntityVisitor.EntityVisitResult EXIT
public static final EntityVisitor.EntityVisitResult IGNORE_CHILDREN
public static final EntityVisitor.EntityVisitResult IGNORE_SIBLINGS
public static EntityVisitor.EntityVisitResult[] values()
for (EntityVisitor.EntityVisitResult c : EntityVisitor.EntityVisitResult.values()) System.out.println(c);
public static EntityVisitor.EntityVisitResult 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