public static enum DescendantIterator.StartWith extends java.lang.Enum<DescendantIterator.StartWith>
| Enum Constant and Description |
|---|
CHILDREN
Omit current node and start with child nodes.
|
CURRENT_NODE
Start with current node.
|
| Modifier and Type | Method and Description |
|---|---|
static DescendantIterator.StartWith |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DescendantIterator.StartWith[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DescendantIterator.StartWith CURRENT_NODE
public static final DescendantIterator.StartWith CHILDREN
public static DescendantIterator.StartWith[] values()
for (DescendantIterator.StartWith c : DescendantIterator.StartWith.values()) System.out.println(c);
public static DescendantIterator.StartWith 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 nullCopyright © 2001-2022. All Rights Reserved.