Uses of Interface
ca.cgjennings.algo.DependencyRelation
-
Packages that use DependencyRelation Package Description ca.cgjennings.algo -
-
Uses of DependencyRelation in ca.cgjennings.algo
Classes in ca.cgjennings.algo with type parameters of type DependencyRelation Modifier and Type Interface Description interface
DependencyRelation<T extends DependencyRelation<T>>
Represents the relation of dependency by allowing implementing classes to specify the set of objects that they directly depend upon.class
TopologicalSorter<T extends DependencyRelation<T>>
A topological sorter produces an ordering that respects the requirement relationships of a collection of objects.Methods in ca.cgjennings.algo with type parameters of type DependencyRelation Modifier and Type Method Description static <T extends DependencyRelation<T>>
java.util.Set<T>TopologicalSorter. getAllDependants(T object)
Returns a set of the direct and indirect objects required by an object.
-