Package org.onlab.graph
Interface Edge<V extends Vertex>
-
- Type Parameters:
V
- vertex type
- All Known Subinterfaces:
MutablePath<V,E>
,Path<V,E>
,TopologyEdge
- All Known Implementing Classes:
AbstractEdge
,DefaultMutablePath
,DefaultPath
,DefaultTopologyEdge
,DisjointPathPair
public interface Edge<V extends Vertex>
Representation of a graph edge.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
dst()
Returns the edge destination vertex.V
src()
Returns the edge source vertex.
-