public enum GraphTraversalAction extends Enum<GraphTraversalAction>
GraphTraversalAction to be performed.| Enum Constant and Description |
|---|
ABORT_NODE
Abort the exploration of the current node.
|
ABORT_TRAVERSAL
Abort the traversal of the whole graph.
|
EXPLORE
Explore the respective node (in this case, the user data is regarded).
|
IGNORE |
| Modifier and Type | Method and Description |
|---|---|
static GraphTraversalAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphTraversalAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphTraversalAction IGNORE
public static final GraphTraversalAction EXPLORE
public static final GraphTraversalAction ABORT_NODE
public static final GraphTraversalAction ABORT_TRAVERSAL
public static GraphTraversalAction[] values()
for (GraphTraversalAction c : GraphTraversalAction.values()) System.out.println(c);
public static GraphTraversalAction 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 © 2013. All Rights Reserved.