Class EdgeFactories.DirectedWeightedEdgeFactory

  • All Implemented Interfaces:
    java.io.Serializable, EdgeFactory
    Enclosing class:
    EdgeFactories

    public static class EdgeFactories.DirectedWeightedEdgeFactory
    extends java.lang.Object
    An EdgeFactory for producing directed edges with weights.
    Since:
    Jul 14, 2003
    Author:
    Barak Naveh
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Edge createEdge​(java.lang.Object source, java.lang.Object target)
      Creates a new edge whose endpoints are the specified source and target vertices.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DirectedWeightedEdgeFactory

        public DirectedWeightedEdgeFactory()
    • Method Detail

      • createEdge

        public Edge createEdge​(java.lang.Object source,
                               java.lang.Object target)
        Description copied from interface: EdgeFactory
        Creates a new edge whose endpoints are the specified source and target vertices.
        Parameters:
        source - the source vertex.
        target - the target vertex.
        Returns:
        a new edge whose endpoints are the specified source and target vertices.
        See Also:
        EdgeFactory.createEdge(Object, Object)