Uses of Class
com.google.common.graph.Traverser.InsertionOrder
-
Packages that use Traverser.InsertionOrder Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of Traverser.InsertionOrder in com.google.common.graph
Methods in com.google.common.graph that return Traverser.InsertionOrder Modifier and Type Method Description static Traverser.InsertionOrder
Traverser.InsertionOrder. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Traverser.InsertionOrder[]
Traverser.InsertionOrder. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.common.graph with parameters of type Traverser.InsertionOrder Modifier and Type Method Description private java.util.Iterator<N>
Traverser.Traversal. topDown(java.util.Iterator<? extends N> startNodes, Traverser.InsertionOrder order)
In top-down traversal, an ancestor node is always traversed before any of its descendant nodes.
-