Edge

Fundamental building block for graph structures.

API

Edge.java
interface Edge<T> {
  Vertex<T> from()
  Vertex<T> to()
}