Uses of Interface
edu.uci.ics.jung.graph.UndirectedGraph
Packages that use UndirectedGraph
Package
Description
Mechanisms for identifying clusters in graphs.
Methods for generating random graphs with various properties.
Mechanisms for graph transformation.
Interfaces for the JUNG graph types, and some representative implementations.
Utility interfaces and classes for the JUNG API.
-
Uses of UndirectedGraph in edu.uci.ics.jung.algorithms.cluster
Methods in edu.uci.ics.jung.algorithms.cluster with parameters of type UndirectedGraphModifier and TypeMethodDescriptionBicomponentClusterer.apply
(UndirectedGraph<V, E> theGraph) Extracts the bicomponents from the graph.protected void
BicomponentClusterer.findBiconnectedComponents
(UndirectedGraph<V, E> g, V v, Set<Set<V>> bicomponents) Stores, inbicomponents
, all the biconnected components that are reachable fromv
. -
Uses of UndirectedGraph in edu.uci.ics.jung.algorithms.generators.random
Fields in edu.uci.ics.jung.algorithms.generators.random with type parameters of type UndirectedGraphModifier and TypeFieldDescription(package private) com.google.common.base.Supplier
<UndirectedGraph<V, E>> ErdosRenyiGenerator.graphFactory
Constructor parameters in edu.uci.ics.jung.algorithms.generators.random with type arguments of type UndirectedGraphModifierConstructorDescriptionErdosRenyiGenerator
(com.google.common.base.Supplier<UndirectedGraph<V, E>> graphFactory, com.google.common.base.Supplier<V> vertexFactory, com.google.common.base.Supplier<E> edgeFactory, int numVertices, double p) -
Uses of UndirectedGraph in edu.uci.ics.jung.algorithms.transformation
Methods in edu.uci.ics.jung.algorithms.transformation that return UndirectedGraphModifier and TypeMethodDescriptionstatic <V,
E> UndirectedGraph <V, E> DirectionTransformer.toUndirected
(Graph<V, E> graph, com.google.common.base.Supplier<UndirectedGraph<V, E>> graph_factory, com.google.common.base.Supplier<E> edge_factory, boolean create_new) Transformsgraph
(which may be of any directionality) into an undirected graph.Method parameters in edu.uci.ics.jung.algorithms.transformation with type arguments of type UndirectedGraphModifier and TypeMethodDescriptionstatic <V,
E> UndirectedGraph <V, E> DirectionTransformer.toUndirected
(Graph<V, E> graph, com.google.common.base.Supplier<UndirectedGraph<V, E>> graph_factory, com.google.common.base.Supplier<E> edge_factory, boolean create_new) Transformsgraph
(which may be of any directionality) into an undirected graph. -
Uses of UndirectedGraph in edu.uci.ics.jung.graph
Classes in edu.uci.ics.jung.graph that implement UndirectedGraphModifier and TypeClassDescriptionclass
An implementation ofUndirectedGraph
that is suitable for sparse graphs, orders its vertex and edge collections according to insertion time, and permits parallel edges.class
An implementation ofUndirectedGraph
that is suitable for sparse graphs.class
An implementation ofUndirectedGraph
that is suitable for sparse graphs and permits parallel edges.Methods in edu.uci.ics.jung.graph that return types with arguments of type UndirectedGraphModifier and TypeMethodDescriptionstatic <V,
E> com.google.common.base.Supplier <UndirectedGraph<V, E>> UndirectedOrderedSparseMultigraph.getFactory()
static <V,
E> com.google.common.base.Supplier <UndirectedGraph<V, E>> UndirectedSparseGraph.getFactory()
static <V,
E> com.google.common.base.Supplier <UndirectedGraph<V, E>> UndirectedSparseMultigraph.getFactory()
-
Uses of UndirectedGraph in edu.uci.ics.jung.graph.util
Classes in edu.uci.ics.jung.graph.util that implement UndirectedGraphModifier and TypeClassDescription(package private) static class
(package private) static class
Methods in edu.uci.ics.jung.graph.util that return UndirectedGraphModifier and TypeMethodDescriptionstatic <V,
E> UndirectedGraph <V, E> Graphs.synchronizedUndirectedGraph
(UndirectedGraph<V, E> graph) Returns a synchronized UndirectedGraph backed by the passed UndirectedGraph.static <V,
E> UndirectedGraph <V, E> Graphs.unmodifiableUndirectedGraph
(UndirectedGraph<V, E> graph) Returns an unmodifiableUndirectedGraph
backed by the passed graph.Methods in edu.uci.ics.jung.graph.util with parameters of type UndirectedGraphModifier and TypeMethodDescriptionstatic <V,
E> UndirectedGraph <V, E> Graphs.synchronizedUndirectedGraph
(UndirectedGraph<V, E> graph) Returns a synchronized UndirectedGraph backed by the passed UndirectedGraph.static <V,
E> UndirectedGraph <V, E> Graphs.unmodifiableUndirectedGraph
(UndirectedGraph<V, E> graph) Returns an unmodifiableUndirectedGraph
backed by the passed graph.Constructors in edu.uci.ics.jung.graph.util with parameters of type UndirectedGraphModifierConstructorDescriptionprivate
SynchronizedUndirectedGraph
(UndirectedGraph<V, E> delegate) private
UnmodifiableUndirectedGraph
(UndirectedGraph<V, E> delegate)