Package org._3pq.jgrapht.edge
Class DirectedEdge
- java.lang.Object
-
- org._3pq.jgrapht.edge.DefaultEdge
-
- org._3pq.jgrapht.edge.DirectedEdge
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,Edge
- Direct Known Subclasses:
DirectedWeightedEdge
public class DirectedEdge extends DefaultEdge
A implementation of directed edge.- Since:
- Jul 14, 2003
- Author:
- Barak Naveh
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org._3pq.jgrapht.Edge
DEFAULT_EDGE_WEIGHT
-
-
Constructor Summary
Constructors Constructor Description DirectedEdge(java.lang.Object sourceVertex, java.lang.Object targetVertex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Returns a string representation of this directed edge.-
Methods inherited from class org._3pq.jgrapht.edge.DefaultEdge
clone, containsVertex, getSource, getTarget, getWeight, oppositeVertex, setWeight
-
-
-
-
Constructor Detail
-
DirectedEdge
public DirectedEdge(java.lang.Object sourceVertex, java.lang.Object targetVertex)
- See Also:
DefaultEdge(Object, Object)
-
-
Method Detail
-
toString
public java.lang.String toString()
Returns a string representation of this directed edge. The representation is a parenthesized pair (v1,v2) where v1 is the source vertex of this edge and v2 is the target vertex of this edge.- Overrides:
toString
in classjava.lang.Object
- Returns:
- a string representation of this directed edge.
-
-