public enum EHierarchyCallbackReturn extends Enum<EHierarchyCallbackReturn>
| Enum Constant and Description |
|---|
CONTINUE
Continue with the next element.
|
STOP_ITERATION
Stop the iteration completely.
|
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 |
|---|---|
static EHierarchyCallbackReturn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EHierarchyCallbackReturn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EHierarchyCallbackReturn CONTINUE
public static final EHierarchyCallbackReturn USE_NEXT_SIBLING
public static final EHierarchyCallbackReturn USE_PARENTS_NEXT_SIBLING
public static final EHierarchyCallbackReturn STOP_ITERATION
public static EHierarchyCallbackReturn[] values()
for (EHierarchyCallbackReturn c : EHierarchyCallbackReturn.values()) System.out.println(c);
public static EHierarchyCallbackReturn 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 © 2006–2015 phloc systems. All rights reserved.