Uses of Class
com.google.common.graph.ElementOrder
-
Packages that use ElementOrder Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of ElementOrder in com.google.common.graph
Fields in com.google.common.graph declared as ElementOrder Modifier and Type Field Description private ElementOrder<E>
ConfigurableNetwork. edgeOrder
(package private) ElementOrder<? super E>
NetworkBuilder. edgeOrder
(package private) ElementOrder<N>
AbstractGraphBuilder. nodeOrder
private ElementOrder<N>
ConfigurableNetwork. nodeOrder
private ElementOrder<N>
ConfigurableValueGraph. nodeOrder
Methods in com.google.common.graph that return ElementOrder Modifier and Type Method Description (package private) <T1 extends T>
ElementOrder<T1>ElementOrder. cast()
ElementOrder<E>
ConfigurableNetwork. edgeOrder()
ElementOrder<E>
Graphs.TransposedNetwork. edgeOrder()
ElementOrder<E>
Network. edgeOrder()
Returns the order of iteration for the elements ofNetwork.edges()
.static <S> ElementOrder<S>
ElementOrder. insertion()
Returns an instance which specifies that insertion ordering is guaranteed.static <S extends java.lang.Comparable<? super S>>
ElementOrder<S>ElementOrder. natural()
Returns an instance which specifies that the natural ordering of the elements is guaranteed.ElementOrder<N>
ConfigurableNetwork. nodeOrder()
ElementOrder<N>
ConfigurableValueGraph. nodeOrder()
ElementOrder<N>
ForwardingGraph. nodeOrder()
ElementOrder<N>
Graph. nodeOrder()
Returns the order of iteration for the elements ofGraph.nodes()
.ElementOrder<N>
Graphs.TransposedGraph. nodeOrder()
ElementOrder<N>
Graphs.TransposedNetwork. nodeOrder()
ElementOrder<N>
Graphs.TransposedValueGraph. nodeOrder()
ElementOrder<N>
Network. nodeOrder()
Returns the order of iteration for the elements ofNetwork.nodes()
.static <S> ElementOrder<S>
ElementOrder. sorted(java.util.Comparator<S> comparator)
Returns an instance which specifies that the ordering of the elements is guaranteed to be determined bycomparator
.static <S> ElementOrder<S>
ElementOrder. unordered()
Returns an instance which specifies that no ordering is guaranteed.Methods in com.google.common.graph with parameters of type ElementOrder Modifier and Type Method Description <E1 extends E>
NetworkBuilder<N,E1>NetworkBuilder. edgeOrder(ElementOrder<E1> edgeOrder)
Specifies the order of iteration for the elements ofNetwork.edges()
.<N1 extends N>
GraphBuilder<N1>GraphBuilder. nodeOrder(ElementOrder<N1> nodeOrder)
Specifies the order of iteration for the elements ofGraph.nodes()
.<N1 extends N>
NetworkBuilder<N1,E>NetworkBuilder. nodeOrder(ElementOrder<N1> nodeOrder)
Specifies the order of iteration for the elements ofNetwork.nodes()
.<N1 extends N>
ValueGraphBuilder<N1,V>ValueGraphBuilder. nodeOrder(ElementOrder<N1> nodeOrder)
Specifies the order of iteration for the elements ofGraph.nodes()
.
-