Class 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
    • 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 class java.lang.Object
        Returns:
        a string representation of this directed edge.