Uses of Class
org.jgrapht.graph.guava.ElementOrderMethod
-
Packages that use ElementOrderMethod Package Description org.jgrapht.graph.guava -
-
Uses of ElementOrderMethod in org.jgrapht.graph.guava
Fields in org.jgrapht.graph.guava declared as ElementOrderMethod Modifier and Type Field Description protected ElementOrderMethod<V>BaseGraphAdapter. vertexOrderMethodprotected ElementOrderMethod<V>BaseNetworkAdapter. vertexOrderMethodprotected ElementOrderMethod<V>BaseValueGraphAdapter. vertexOrderMethodMethods in org.jgrapht.graph.guava that return ElementOrderMethod Modifier and Type Method Description static <T> ElementOrderMethod<T>ElementOrderMethod. comparator(Comparator<T> comparator)Get the comparator ordering method.static <T> ElementOrderMethod<T>ElementOrderMethod. guavaComparator()Get the guava comparator ordering method.static <T> ElementOrderMethod<T>ElementOrderMethod. internal()Get the internal ordering method.static <T> ElementOrderMethod<T>ElementOrderMethod. natural()Get the natural ordering methodMethods in org.jgrapht.graph.guava with parameters of type ElementOrderMethod Modifier and Type Method Description protected org.jgrapht.graph.guava.ElementOrder<V>BaseGraphAdapter. createVertexOrder(ElementOrderMethod<V> vertexOrderMethod)Create the internal vertex order implementation.protected org.jgrapht.graph.guava.ElementOrder<V>BaseNetworkAdapter. createVertexOrder(ElementOrderMethod<V> vertexOrderMethod)Create the internal vertex order implementation.protected org.jgrapht.graph.guava.ElementOrder<V>BaseValueGraphAdapter. createVertexOrder(ElementOrderMethod<V> vertexOrderMethod)Create the internal vertex order implementation.Constructors in org.jgrapht.graph.guava with parameters of type ElementOrderMethod Constructor Description BaseGraphAdapter(G graph, Supplier<V> vertexSupplier, Supplier<com.google.common.graph.EndpointPair<V>> edgeSupplier, ElementOrderMethod<V> vertexOrderMethod)Create a new adapter.BaseNetworkAdapter(N network, Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, ElementOrderMethod<V> vertexOrderMethod)Create a new network adapter.BaseValueGraphAdapter(VG valueGraph, ToDoubleFunction<W> valueConverter, Supplier<V> vertexSupplier, Supplier<com.google.common.graph.EndpointPair<V>> edgeSupplier, ElementOrderMethod<V> vertexOrderMethod)Create a new adapter.MutableGraphAdapter(com.google.common.graph.MutableGraph<V> graph, Supplier<V> vertexSupplier, Supplier<com.google.common.graph.EndpointPair<V>> edgeSupplier, ElementOrderMethod<V> vertexOrderMethod)Create a new adapter.MutableNetworkAdapter(com.google.common.graph.MutableNetwork<V,E> network, Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, ElementOrderMethod<V> vertexOrderMethod)Create a new network adapter.MutableValueGraphAdapter(com.google.common.graph.MutableValueGraph<V,W> valueGraph, W defaultValue, ToDoubleFunction<W> valueConverter, Supplier<V> vertexSupplier, Supplier<com.google.common.graph.EndpointPair<V>> edgeSupplier, ElementOrderMethod<V> vertexOrderMethod)Create a new adapter.
-