Interface TopologicalSorter.EdgeLister<E>

All Known Implementing Classes:
SchemaUpdateEdgeLister
Enclosing class:
TopologicalSorter<E>

public static interface TopologicalSorter.EdgeLister<E>
Implemented by classes that can enumerate the outgoing edges from a node in a graph.
  • Method Summary

    Modifier and Type
    Method
    Description
    getOutEdges(E node)
    Get the set of all nodes X for which there is an edge from node to X.
  • Method Details

    • getOutEdges

      Set<E> getOutEdges(E node)
      Get the set of all nodes X for which there is an edge from node to X.
      Parameters:
      node - node in question
      Returns:
      set of outgoing edges from node