org.jgrapht.graph
Class UnmodifiableDirectedGraph<V,E>
java.lang.Object
org.jgrapht.graph.AbstractGraph<V,E>
org.jgrapht.graph.GraphDelegator<V,E>
org.jgrapht.graph.UnmodifiableGraph<V,E>
org.jgrapht.graph.UnmodifiableDirectedGraph<V,E>
- All Implemented Interfaces:
- Serializable, DirectedGraph<V,E>, Graph<V,E>
public class UnmodifiableDirectedGraph<V,E>
- extends UnmodifiableGraph<V,E>
- implements DirectedGraph<V,E>
A directed graph that cannot be modified.
- See Also:
UnmodifiableGraph
,
Serialized Form
Methods inherited from class org.jgrapht.graph.GraphDelegator |
containsEdge, containsVertex, degreeOf, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeTarget, getEdgeWeight, incomingEdgesOf, inDegreeOf, outDegreeOf, outgoingEdgesOf, setEdgeWeight, toString, vertexSet |
Methods inherited from interface org.jgrapht.Graph |
addEdge, addEdge, addVertex, containsEdge, containsEdge, containsVertex, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeTarget, getEdgeWeight, removeAllEdges, removeAllEdges, removeAllVertices, removeEdge, removeEdge, removeVertex, vertexSet |
UnmodifiableDirectedGraph
public UnmodifiableDirectedGraph(DirectedGraph<V,E> g)
- Creates a new unmodifiable directed graph based on the specified backing
graph.
- Parameters:
g
- the backing graph on which an unmodifiable graph is to be
created.
Copyright © 2013. All rights reserved.