Uses of Class
org.apache.myfaces.config.util.Vertex
Packages that use Vertex
-
Uses of Vertex in org.apache.myfaces.config.util
Methods in org.apache.myfaces.config.util that return types with arguments of type VertexMethods in org.apache.myfaces.config.util with parameters of type VertexModifier and TypeMethodDescriptionvoid
Vertex.addDependency
(Vertex<T> v) Add a dependecy to this Vertex.int
Used in the sort algorithm to sort all the Vertices so that they respect the ordinal they were given during the topological sort.static <T> void
Verify that a vertex and its set of dependencies have no cycles.Method parameters in org.apache.myfaces.config.util with type arguments of type VertexModifier and TypeMethodDescriptionstatic <T> int
DirectedAcyclicGraphVerifier.findVertex
(List<Vertex<T>> vertexList, String name) static <T> void
DirectedAcyclicGraphVerifier.resetVertices
(List<Vertex<T>> vertices) Resets all the vertices so that the visitation flags and indegrees are reset to their start values.static <T> void
DirectedAcyclicGraphVerifier.topologicalSort
(List<Vertex<T>> vertices) Sort a set of vertices so that no dependency is before its vertex.static <T> void
Verify a set of vertices and all their dependencies have no cycles.