Interface BidirectionalGraph<N,​E>

    • Method Detail

      • getIncomingEdges

        Collection<E> getIncomingEdges​(N node)
        Retrieves the incoming edges of a given node.
        Parameters:
        node - the node
        Returns:
        all incoming edges of the specified node.
      • getSource

        N getSource​(E edge)
        Retrieves the source node of a given edge.
        Parameters:
        edge - the edge
        Returns:
        the source node of the given edge