V - the graph vertex typeE - the graph edge typepublic class DefaultDirectedGraph<V,E> extends AbstractBaseGraph<V,E> implements DirectedGraph<V,E>
prefixed 'Default' to avoid name collision with the DirectedGraph interface.
| Constructor and Description |
|---|
DefaultDirectedGraph(Class<? extends E> edgeClass)
Creates a new directed graph.
|
DefaultDirectedGraph(EdgeFactory<V,E> ef)
Creates a new directed graph with the specified edge factory.
|
| Modifier and Type | Method and Description |
|---|---|
static <V,E> DirectedGraphBuilderBase<V,E,? extends DefaultDirectedGraph<V,E>,?> |
builder(Class<? extends E> edgeClass)
Create a builder for this kind of graph.
|
static <V,E> DirectedGraphBuilderBase<V,E,? extends DefaultDirectedGraph<V,E>,?> |
builder(EdgeFactory<V,E> ef)
Create a builder for this kind of graph.
|
addEdge, addEdge, addVertex, clone, containsEdge, containsVertex, createDirectedSpecifics, createSpecifics, createUndirectedSpecifics, degreeOf, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeTarget, getEdgeWeight, incomingEdgesOf, inDegreeOf, isAllowingLoops, isAllowingMultipleEdges, outDegreeOf, outgoingEdgesOf, removeEdge, removeEdge, removeVertex, setEdgeWeight, vertexSetassertVertexExist, containsEdge, equals, hashCode, removeAllEdges, removeAllEdges, removeAllEdges, removeAllVertices, toString, toStringFromSetsfinalize, getClass, notify, notifyAll, wait, wait, waitincomingEdgesOf, inDegreeOf, outDegreeOf, outgoingEdgesOfaddEdge, addEdge, addVertex, containsEdge, containsEdge, containsVertex, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeTarget, getEdgeWeight, removeAllEdges, removeAllEdges, removeAllVertices, removeEdge, removeEdge, removeVertex, vertexSetpublic DefaultDirectedGraph(Class<? extends E> edgeClass)
edgeClass - class on which to base factory for edgespublic DefaultDirectedGraph(EdgeFactory<V,E> ef)
ef - the edge factory of the new graph.public static <V,E> DirectedGraphBuilderBase<V,E,? extends DefaultDirectedGraph<V,E>,?> builder(Class<? extends E> edgeClass)
V - the graph vertex typeE - the graph edge typeedgeClass - class on which to base factory for edgespublic static <V,E> DirectedGraphBuilderBase<V,E,? extends DefaultDirectedGraph<V,E>,?> builder(EdgeFactory<V,E> ef)
V - the graph vertex typeE - the graph edge typeef - the edge factory of the new graphCopyright © 2017. All rights reserved.