public enum EHierarchyVisitorReturn extends Enum<EHierarchyVisitorReturn>
| Enum Constant and Description |
|---|
CONTINUE
Continue with the next element.
|
STOP_ITERATION
Stop the iteration completely and immediately.
|
USE_NEXT_SIBLING
Skip the child elements of the current element and go to the next sibling.
|
USE_PARENTS_NEXT_SIBLING
Skip the child elements and all siblings of the current content element and
go to the parent element's sibling.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isContinue() |
static EHierarchyVisitorReturn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EHierarchyVisitorReturn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EHierarchyVisitorReturn CONTINUE
public static final EHierarchyVisitorReturn USE_NEXT_SIBLING
public static final EHierarchyVisitorReturn USE_PARENTS_NEXT_SIBLING
public static final EHierarchyVisitorReturn STOP_ITERATION
public static EHierarchyVisitorReturn[] values()
for (EHierarchyVisitorReturn c : EHierarchyVisitorReturn.values()) System.out.println(c);
public static EHierarchyVisitorReturn 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 nullpublic boolean isContinue()
Copyright © 2014–2019 Philip Helger. All rights reserved.