Uses of Class
org.jgrapht.graph.GraphDelegator
| Package | Description |
|---|---|
| org.jgrapht.graph |
Implementations of various graphs.
|
| org.jgrapht.graph.concurrent |
Implementations of various concurrent graph structures.
|
-
Uses of GraphDelegator in org.jgrapht.graph
Subclasses of GraphDelegator in org.jgrapht.graph Modifier and Type Class Description classAsUndirectedGraph<V,E>An undirected view of the backing directed graph specified in the constructor.classAsUnmodifiableGraph<V,E>An unmodifiable view of the backing graph specified in the constructor.classAsUnweightedGraph<V,E>Provides an unweighted view on a graph.classAsWeightedGraph<V,E>Provides a weighted view of a graph.classDefaultListenableGraph<V,E>A graph backed by the the graph specified at the constructor, which can be listened byGraphListeners and byVertexSetListeners.classEdgeReversedGraph<V,E>Provides an edge-reversed view $g'$ of a directed graph $g$.classParanoidGraph<V,E>ParanoidGraph provides a way to verify that objects added to a graph obey the standard equals/hashCode contract. -
Uses of GraphDelegator in org.jgrapht.graph.concurrent
Subclasses of GraphDelegator in org.jgrapht.graph.concurrent Modifier and Type Class Description classAsSynchronizedGraph<V,E>Create a synchronized (thread-safe) Graph backed by the specified Graph.