Uses of Class
util.collection.Graph.Edge
Packages that use Graph.Edge
-
Uses of Graph.Edge in specialized_checkers.collection
Methods in specialized_checkers.collection with parameters of type Graph.EdgeModifier and TypeMethodDescriptionCheckerGraph.containsEdge
(Graph.Edge<N, E> edge) Checks if the graph contains the specified edge.Method parameters in specialized_checkers.collection with type arguments of type Graph.EdgeModifier and TypeMethodDescriptionCheckerGraph.allEdgesMatch
(Predicate<Graph.Edge<N, E>> condition) Checks if all edges in the graph match the given condition.CheckerGraph.anyEdgesMatch
(Predicate<Graph.Edge<N, E>> condition) Checks if any edge in the graph matches the given condition.static <N,
E extends Number>
CheckerGraph<N, E> CheckerGraph.check
(Collection<Graph.Edge<N, E>> edges) Creates a CheckerGraph from a collection of edges with a default name.static <N,
E extends Number>
CheckerGraph<N, E> CheckerGraph.check
(Collection<Graph.Edge<N, E>> edges, boolean directed) Creates a CheckerGraph from a collection of edges, specifying if the graph is directed, with a default name.static <N,
E extends Number>
CheckerGraph<N, E> CheckerGraph.check
(Collection<Graph.Edge<N, E>> edges, boolean directed, String name) Creates a CheckerGraph from a collection of edges, specifying if the graph is directed, and assigns a name.static <N,
E extends Number>
CheckerGraph<N, E> CheckerGraph.check
(Collection<Graph.Edge<N, E>> edges, String name) Creates a CheckerGraph from a collection of edges and assigns a name. -
Uses of Graph.Edge in util
Method parameters in util with type arguments of type Graph.EdgeModifier and TypeMethodDescription<N,
E extends Number>
CheckerGraph<N, E> Checker.isGraph
(Collection<Graph.Edge<N, E>> edges) Creates a CheckerGraph for the given edges (undirected by default).<N,
E extends Number>
CheckerGraph<N, E> Checker.isGraph
(Collection<Graph.Edge<N, E>> edges, boolean directed) Creates a CheckerGraph for the given edges and directionality. -
Uses of Graph.Edge in util.collection
Methods in util.collection that return types with arguments of type Graph.EdgeModifier and TypeMethodDescriptionSet
<Graph.Edge<N, E>> Graph.getEdges()
Returns the set of all edges in the graph.Methods in util.collection with parameters of type Graph.EdgeModifier and TypeMethodDescriptionboolean
Graph.containsEdge
(Graph.Edge<N, E> edge) Checks if the graph contains the specified edge.Method parameters in util.collection with type arguments of type Graph.EdgeModifier and TypeMethodDescriptionboolean
Graph.allEdgesMatch
(Predicate<Graph.Edge<N, E>> condition) Checks if all edges in the graph match the given condition.boolean
Graph.anyEdgesMatch
(Predicate<Graph.Edge<N, E>> condition) Checks if any edge in the graph matches the given condition.Constructor parameters in util.collection with type arguments of type Graph.EdgeModifierConstructorDescriptionGraph
(Collection<Graph.Edge<N, E>> edges) Constructs an undirected graph with the specified edges.Graph
(Collection<Graph.Edge<N, E>> edges, boolean directed) Constructs a graph with the specified edges and directionality.