Interface DirectedGraph<V,E>

Type Parameters:
V - type specification for vertices
E - type specification for edges
All Superinterfaces:
Graph<V,E>, Hypergraph<V,E>
All Known Subinterfaces:
Forest<V,E>, Tree<V,E>
All Known Implementing Classes:
DelegateForest, DelegateTree, DirectedOrderedSparseMultigraph, DirectedSparseGraph, DirectedSparseMultigraph, Graphs.SynchronizedDirectedGraph, Graphs.SynchronizedForest, Graphs.SynchronizedTree, Graphs.UnmodifiableDirectedGraph, Graphs.UnmodifiableForest, Graphs.UnmodifiableTree, OrderedKAryTree

public interface DirectedGraph<V,E> extends Graph<V,E>
A tagging interface for implementations of Graph that accept only directed edges.