public static enum SGraph.GRAPH_TRAVERSE_TYPE extends Enum<SGraph.GRAPH_TRAVERSE_TYPE>
SGraph.GRAPH_TRAVERSE_TYPE determines the the traversal order. In
general top-down means a traversal along the direction of the relations,
whereas bottom-up means a traversal against the direction of the
relations.| Enum Constant and Description |
|---|
BOTTOM_UP_BREADTH_FIRST |
BOTTOM_UP_DEPTH_FIRST |
TOP_DOWN_BREADTH_FIRST |
TOP_DOWN_DEPTH_FIRST |
| Modifier and Type | Method and Description |
|---|---|
static SGraph.GRAPH_TRAVERSE_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SGraph.GRAPH_TRAVERSE_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SGraph.GRAPH_TRAVERSE_TYPE TOP_DOWN_DEPTH_FIRST
public static final SGraph.GRAPH_TRAVERSE_TYPE TOP_DOWN_BREADTH_FIRST
public static final SGraph.GRAPH_TRAVERSE_TYPE BOTTOM_UP_DEPTH_FIRST
public static final SGraph.GRAPH_TRAVERSE_TYPE BOTTOM_UP_BREADTH_FIRST
public static SGraph.GRAPH_TRAVERSE_TYPE[] values()
for (SGraph.GRAPH_TRAVERSE_TYPE c : SGraph.GRAPH_TRAVERSE_TYPE.values()) System.out.println(c);
public static SGraph.GRAPH_TRAVERSE_TYPE 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 © 2009–2015 Humboldt-Universität zu Berlin, INRIA. All rights reserved.