Interface Graph.GraphEdge<N,E>
-
- Type Parameters:
N- Value type that the graph node stores.E- Value type that the graph edge stores.
- All Superinterfaces:
Annotatable
- All Known Subinterfaces:
DiGraph.DiGraphEdge<N,E>,UndiGraph.UndiGraphEdge<N,E>
- All Known Implementing Classes:
LinkedDirectedGraph.LinkedDiGraphEdge
public static interface Graph.GraphEdge<N,E> extends Annotatable
A generic edge.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphNode<N,E>getNodeA()GraphNode<N,E>getNodeB()EgetValue()Retrieves the edge's value.-
Methods inherited from interface com.google.javascript.jscomp.graph.Annotatable
getAnnotation, setAnnotation
-
-