Uses of Class
nzilbb.util.DependencyNode
-
Packages that use DependencyNode Package Description nzilbb.util Utility classes for IO, program execution, ISO language code handling, etc. -
-
Uses of DependencyNode in nzilbb.util
Methods in nzilbb.util that return DependencyNode Modifier and Type Method Description DependencyNode<C>
DependencyGraph. add(DependencyNode<C> node)
Adds the given node to the graph.DependencyNode
DependencyNode. dependsOn(DependencyNode<C> other)
Adds an edge to the graph.DependencyNode
CircularDependencyException. getNode()
Getter forCircularDependencyException.node
: The node with the circular dependency.Methods in nzilbb.util that return types with arguments of type DependencyNode Modifier and Type Method Description Set<DependencyNode<C>>
DependencyNode. getDependsOn()
Getter fordependsOn
: Set of graph edges; providers that this node depends on.Set<DependencyNode<C>>
DependencyGraph. getNodes()
Getter forDependencyGraph.nodes
: All the nodes in the graph.Collection<DependencyNode<C>>
DependencyGraph. resolve()
Resolves dependencies, and returns an ordered list of nodes reflecting the order in which nodes must be processed to ensure each node's depencies are met before processing.Methods in nzilbb.util with parameters of type DependencyNode Modifier and Type Method Description DependencyNode<C>
DependencyGraph. add(DependencyNode<C> node)
Adds the given node to the graph.DependencyNode
DependencyNode. dependsOn(DependencyNode<C> other)
Adds an edge to the graph.Constructors in nzilbb.util with parameters of type DependencyNode Constructor Description CircularDependencyException(DependencyNode node)
Default constructor.
-