public enum BranchOrderingPolicies extends Enum<BranchOrderingPolicies> implements BranchOrderingPolicy
Enum Constant and Description |
---|
POSTORDER_BREADTH_FIRST |
POSTORDER_DEPTH_FIRST |
PREORDER_BREADTH_FIRST |
PREORDER_DEPTH_FIRST |
Modifier and Type | Method and Description |
---|---|
static BranchOrderingPolicies |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BranchOrderingPolicies[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
create
public static final BranchOrderingPolicies PREORDER_DEPTH_FIRST
public static final BranchOrderingPolicies POSTORDER_DEPTH_FIRST
public static final BranchOrderingPolicies PREORDER_BREADTH_FIRST
public static final BranchOrderingPolicies POSTORDER_BREADTH_FIRST
public static BranchOrderingPolicies[] values()
for (BranchOrderingPolicies c : BranchOrderingPolicies.values()) System.out.println(c);
public static BranchOrderingPolicies 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 © 2002–2017 The Neo4j Graph Database Project. All rights reserved.