Package org.opendaylight.yangtools.util
Interface TopologicalSort.Node
-
- All Known Implementing Classes:
TopologicalSort.NodeImpl
- Enclosing class:
- TopologicalSort
@Beta public static interface TopologicalSort.Node
Interface for nodes in graph that can be sorted topologically.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<TopologicalSort.Edge>
getInEdges()
Set<TopologicalSort.Edge>
getOutEdges()
-
-
-
Method Detail
-
getInEdges
Set<TopologicalSort.Edge> getInEdges()
-
getOutEdges
Set<TopologicalSort.Edge> getOutEdges()
-
-