public static enum TagTreeIterator.TreeTraversalOrder extends Enum<TagTreeIterator.TreeTraversalOrder>
| Enum Constant and Description |
|---|
POST_ORDER
Postorder traversal.
|
PRE_ORDER
Preorder traversal.
|
| Modifier and Type | Method and Description |
|---|---|
static TagTreeIterator.TreeTraversalOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagTreeIterator.TreeTraversalOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagTreeIterator.TreeTraversalOrder PRE_ORDER
public static final TagTreeIterator.TreeTraversalOrder POST_ORDER
public static TagTreeIterator.TreeTraversalOrder[] values()
for (TagTreeIterator.TreeTraversalOrder c : TagTreeIterator.TreeTraversalOrder.values()) System.out.println(c);
public static TagTreeIterator.TreeTraversalOrder 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 © 1998–2024 Apryse Group NV. All rights reserved.