Class AbstractGraph<ID>

java.lang.Object
com.github.moaxcp.graphs.AbstractGraph<ID>
Type Parameters:
ID - type of all identifiers in graph
All Implemented Interfaces:
Graph<ID>
Direct Known Subclasses:
DirectedGraph, UndirectedGraph

public abstract class AbstractGraph<ID> extends Object implements Graph<ID>
This class provides a partial implementation of the Graph interface.

Vertices and edges are stored in insertion order.