Interface IGraphDotEdgeStatement<S extends IGraphDotStatement>

    • Method Detail

      • getAttributeList

        EdgeAttributeList getAttributeList()
        Returns:
        Optional attributes of the edge. Never null, but may be empty.
      • getEdgeOperation

        EEdgeType getEdgeOperation()
        Returns:
        Whether this edge statement is for a directed or undirected edge. Never null.
      • getMoreNodes

        List<IGraphDotEdgeSpecifier<? extends S>> getMoreNodes()
        Returns:
        Optional additional nodes to connect to. Never null, but may be empty.
      • getSource

        IGraphDotEdgeSpecifier<? extends S> getSource()
        Returns:
        Source node of the edge, i.e. the start point of the edge. Never null.
      • getTarget

        IGraphDotEdgeSpecifier<? extends S> getTarget()
        Returns:
        Target node of the edge, i.e. the end point of the edge. Never null.