public static enum TraversalOptions.Order extends Enum<TraversalOptions.Order>
Enum Constant and Description |
---|
postorder |
preorder |
preorder_expander |
Modifier and Type | Method and Description |
---|---|
static TraversalOptions.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraversalOptions.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraversalOptions.Order preorder
public static final TraversalOptions.Order postorder
public static final TraversalOptions.Order preorder_expander
public static TraversalOptions.Order[] values()
for (TraversalOptions.Order c : TraversalOptions.Order.values()) System.out.println(c);
public static TraversalOptions.Order 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 © 2016–2022 ArangoDB GmbH. All rights reserved.