V
- the graph vertex typeE
- the graph edge typepublic class SimpleDirectedGraph<V,E> extends AbstractBaseGraph<V,E> implements DirectedGraph<V,E>
DEFAULT_EDGE_WEIGHT
Constructor and Description |
---|
SimpleDirectedGraph(Class<? extends E> edgeClass)
Creates a new simple directed graph.
|
SimpleDirectedGraph(EdgeFactory<V,E> ef)
Creates a new simple directed graph with the specified edge factory.
|
SimpleDirectedGraph(EdgeFactory<V,E> ef,
boolean weighted)
Creates a new simple directed graph with the specified edge factory.
|
Modifier and Type | Method and Description |
---|---|
static <V,E> DirectedGraphBuilderBase<V,E,? extends SimpleDirectedGraph<V,E>,?> |
builder(Class<? extends E> edgeClass)
Deprecated.
In favor of
createBuilder(Class) . |
static <V,E> DirectedGraphBuilderBase<V,E,? extends SimpleDirectedGraph<V,E>,?> |
builder(EdgeFactory<V,E> ef)
Deprecated.
In favor of
createBuilder(EdgeFactory) . |
static <V,E> GraphBuilder<V,E,? extends SimpleDirectedGraph<V,E>> |
createBuilder(Class<? extends E> edgeClass)
Create a builder for this kind of graph.
|
static <V,E> GraphBuilder<V,E,? extends SimpleDirectedGraph<V,E>> |
createBuilder(EdgeFactory<V,E> ef)
Create a builder for this kind of graph.
|
addEdge, addEdge, addVertex, clone, containsEdge, containsVertex, createIntrusiveEdgesSpecifics, createSpecifics, createSpecifics, degreeOf, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeTarget, getEdgeWeight, getType, incomingEdgesOf, inDegreeOf, isAllowingLoops, isAllowingMultipleEdges, isDirected, isWeighted, outDegreeOf, outgoingEdgesOf, removeEdge, removeEdge, removeVertex, setEdgeWeight, vertexSet
assertVertexExist, containsEdge, equals, hashCode, removeAllEdges, removeAllEdges, removeAllEdges, removeAllVertices, toString, toStringFromSets
finalize, getClass, notify, notifyAll, wait, wait, wait
addEdge, addEdge, addVertex, containsEdge, containsEdge, containsVertex, degreeOf, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeTarget, getEdgeWeight, getType, incomingEdgesOf, inDegreeOf, outDegreeOf, outgoingEdgesOf, removeAllEdges, removeAllEdges, removeAllVertices, removeEdge, removeEdge, removeVertex, setEdgeWeight, vertexSet
public SimpleDirectedGraph(Class<? extends E> edgeClass)
edgeClass
- class on which to base factory for edgespublic SimpleDirectedGraph(EdgeFactory<V,E> ef)
ef
- the edge factory of the new graph.public SimpleDirectedGraph(EdgeFactory<V,E> ef, boolean weighted)
weighted
- if true the graph supports edge weightsef
- the edge factory of the new graph.public static <V,E> GraphBuilder<V,E,? extends SimpleDirectedGraph<V,E>> createBuilder(Class<? extends E> edgeClass)
V
- the graph vertex typeE
- the graph edge typeedgeClass
- class on which to base factory for edgespublic static <V,E> GraphBuilder<V,E,? extends SimpleDirectedGraph<V,E>> createBuilder(EdgeFactory<V,E> ef)
V
- the graph vertex typeE
- the graph edge typeef
- the edge factory of the new graph@Deprecated public static <V,E> DirectedGraphBuilderBase<V,E,? extends SimpleDirectedGraph<V,E>,?> builder(Class<? extends E> edgeClass)
createBuilder(Class)
.V
- the graph vertex typeE
- the graph edge typeedgeClass
- class on which to base factory for edges@Deprecated public static <V,E> DirectedGraphBuilderBase<V,E,? extends SimpleDirectedGraph<V,E>,?> builder(EdgeFactory<V,E> ef)
createBuilder(EdgeFactory)
.V
- the graph vertex typeE
- the graph edge typeef
- the edge factory of the new graphCopyright © 2017. All rights reserved.