Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Org.jgrapht Classes and Interfaces - 218 results found.
NameDescriptionTypePackageFramework
AbstractBaseGraphThe most general implementation of the Graph interface.Classorg.jgrapht.graphJGraph
AbstractBaseGraph .DirectedEdgeContainerA container for vertex edges.Classorg.jgrapht.graph.AbstractBaseGraphJGraph
AbstractGraphA skeletal implementation of the Graph interface, to minimize the effort required to implement graph interfaces.Classorg.jgrapht.graphJGraph
AbstractGraphBuilderBase class for builders of GraphSee Also:DirectedGraphBuilderBase, Classorg.jgrapht.graph.builderJGraph
AbstractGraphIteratorAn empty implementation of a graph iterator to minimize the effort required to implement graph iterators.Classorg.jgrapht.traverseJGraph
AdaptiveIsomorphismInspectorFactoryThis class serves as a factory for GraphIsomorphismInspector concrete implementations.Classorg.jgrapht.experimental.isomorphismJGraph
ApproximationAlgorithmInterfaceorg.jgrapht.experimental.algJGraph
ArrayPermutationsIterAn interface to iterate over array permutations.Interfaceorg.jgrapht.experimental.permutationJGraph
ArrayUnenforcedSetHelper for efficiently representing small sets whose elements are known to be unique by construction, implying we don't need to enforce the uniquenessClassorg.jgrapht.utilJGraph
AsUndirectedGraphAn undirected view of the backing directed graph specified in the constructor.Classorg.jgrapht.graphJGraph
AsUnweightedDirectedGraphAn unweighted view of the backing weighted graph specified in the constructor.Classorg.jgrapht.graphJGraph
AsUnweightedGraphAn unweighted view of the backing weighted graph specified in the constructor.Classorg.jgrapht.graphJGraph
AsWeightedGraphA weighted view of the backing graph specified in the constructor.Classorg.jgrapht.graphJGraph
BellmanFordShortestPath algorithm: weights could be negative, paths could be constrained by a maximum number of edges.Classorg.jgrapht.algJGraph
BiconnectivityInspectorInspects a graph for the biconnectivity property.Classorg.jgrapht.algJGraph
BlockCutpointGraphDefinition of a block of a graph in MathWorld.Classorg.jgrapht.algJGraph
BreadthFirstIteratorA breadth-first iterator for a directed and an undirected graph.Classorg.jgrapht.traverseJGraph
BronKerboschCliqueFinderThis class implements Bron-Kerbosch clique detection algorithm as it is described in [Samudrala R.Classorg.jgrapht.algJGraph
BrownBacktrackColoringClassorg.jgrapht.experimental.alg.colorJGraph
ChromaticNumber chromatic number of a graph to be calculated.Classorg.jgrapht.algJGraph
ClassBasedEdgeFactoryAn EdgeFactory for producing edges by using a class as a factory.Classorg.jgrapht.graphJGraph
ClassBasedVertexFactoryA VertexFactory for producing vertices by using a class as a factory.Classorg.jgrapht.graphJGraph
CliqueMinimalSeparatorDecompositionClique Minimal Separator Decomposition using MCS-M+ and Atoms algorithm as described in Berry et al.Classorg.jgrapht.algJGraph
ClosestFirstIteratorA closest-first iterator for a directed or undirected graph.Classorg.jgrapht.traverseJGraph
CollectionPermutationIterGiven a container with elements (Collection,Enumeration,array) defines a permutation iterator which returns, on each iteration, a differnt permutationClassorg.jgrapht.experimental.permutationJGraph
CompleteBipartiteGraphGeneratorGenerates a complete bipartite graph of any size.Classorg.jgrapht.generateJGraph
CompleteGraphDemoClassorg.jgrapht.demoJGraph
CompleteGraphGeneratorGenerates a complete graph of any size.Classorg.jgrapht.generateJGraph
ComponentAttributeProviderProvides display attributes for vertices and/or edges in a graph.Interfaceorg.jgrapht.extJGraph
CompoundPermutationIterFor permutation like this: 1,2 are the same eq.Classorg.jgrapht.experimental.permutationJGraph
ConnectedComponentTraversalEventA traversal event with respect to a connected component.Classorg.jgrapht.eventJGraph
ConnectivityInspectorAllows obtaining various connectivity aspects of a graph.Classorg.jgrapht.algJGraph
CrossComponentIteratorProvides a cross-connected-component traversal functionality for iteratorSince:Jan 31, 2004Author:Barak NavehClassorg.jgrapht.traverseJGraph
CrossComponentIterator .VisitColorStandard vertex visit state enumeration.Classorg.jgrapht.traverse.CrossComponentIteratorJGraph
CycleDetectorPerforms cycle detection on a graph.Classorg.jgrapht.algJGraph
DefaultDirectedGraphA directed graph.Classorg.jgrapht.graphJGraph
DefaultDirectedWeightedGraphA directed weighted graph.Classorg.jgrapht.graphJGraph
DefaultEdgeA default implementation for edges in a Graph.Classorg.jgrapht.graphJGraph
DefaultGraphMapping getVertex/EdgeCorrespondence is based on the performance of the concrete Map class which is passed in the constructor.Classorg.jgrapht.graphJGraph
DefaultListenableGraphA graph backed by the the graph specified at the constructor, which can be listened by GraphListener s and by Classorg.jgrapht.graphJGraph
DefaultWeightedEdgeA default implementation for edges in a WeightedGraph.Classorg.jgrapht.graphJGraph
DepthFirstIteratorA depth-first iterator for a directed and an undirected graph.Classorg.jgrapht.traverseJGraph
DijkstraShortestPathAn implementation of Dijkstra's shortest path algorithm using ClosestFirstIterator.Classorg.jgrapht.algJGraph
DirectedAcyclicGraphDirectedAcyclicGraph implements a DAG that can be modified (vertices & edges added and removed), is guaranteed to remain acyclic, and provides fastClassorg.jgrapht.experimental.dagJGraph
DirectedAcyclicGraph .CycleFoundExceptionException used in dfsF when a cycle is foundAuthor:gilespSee Also:Serialized FormClassorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .RegionRegion is an *inclusive* range of indices.Classorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .TopoOrderMappingFor performance tuning, an interface for storing the topological orderingget the topological index of the given vertex.Interfaceorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .TopoOrderMappingFactoryDirectedAcyclicGraph.Interfaceorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .Visitedthis interface allows specification of a strategy for marking vertices as visited (based on their topological index, so the vertex type isn't partInterfaceorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .VisitedArrayImplThis implementation, somewhat to my surprise, is slower than the ArrayList version, probably due to its reallocation of the underlyingClassorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .VisitedArrayListImplThis implementation seems to offer the best performance in most cases.Classorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .VisitedBitSetImplThis implementation is close to the performance of VisitedArrayListImpl, with 1/8 the memory usage.Classorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .VisitedFactoryDirectedAcyclicGraph.Interfaceorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedAcyclicGraph .VisitedHashSetImplThis implementation doesn't seem to perform as well, though I can imagine circumstances where it should shine (lots and lots of vertices).Classorg.jgrapht.experimental.dag.DirectedAcyclicGraphJGraph
DirectedGraphA graph whose all edges are directed.Interfaceorg.jgraphtJGraph
DirectedGraphBuilderA builder class for Graph.Classorg.jgrapht.graph.builderJGraph
DirectedGraphBuilderBaseBase class for DirectedGraphBuilder for extending.Classorg.jgrapht.graph.builderJGraph
DirectedGraphUnionClassorg.jgrapht.graphJGraph
DirectedMaskSubgraphA directed graph that is a MaskSubgraph on another graph.Classorg.jgrapht.graphJGraph
DirectedMultigraphA directed multigraph.Classorg.jgrapht.graphJGraph
DirectedNeighborIndexMaintains a cache of each vertex's neighbors.Classorg.jgrapht.algJGraph
DirectedPseudographA directed pseudograph.Classorg.jgrapht.graphJGraph
DirectedSimpleCyclesA common interface for classes implementing algorithms for enumeration of the simple cycles of a directed graph.Interfaceorg.jgrapht.alg.cycleJGraph
DirectedSubgraphA directed graph that is a subgraph on other graph.Classorg.jgrapht.graphJGraph
DirectedWeightedGraphBuilderA builder class for directed weighted graphs}.Classorg.jgrapht.graph.builderJGraph
DirectedWeightedGraphBuilderBaseBase class for DirectedWeightedGraphBuilder for extending.Classorg.jgrapht.graph.builderJGraph
DirectedWeightedMultigraphA directed weighted multigraph.Classorg.jgrapht.graphJGraph
DirectedWeightedPseudographA directed weighted pseudograph.Classorg.jgrapht.graphJGraph
DirectedWeightedSubgraphA directed weighted graph that is a subgraph on other graph.Classorg.jgrapht.graphJGraph
DOTExporterExports a graph into a DOT file.Classorg.jgrapht.extJGraph
EdgeFactoryAn edge factory used by graphs for creating new edges.Interfaceorg.jgraphtJGraph
EdgeNameProviderAssigns a display name for each of the graph edes.Interfaceorg.jgrapht.extJGraph
EdgeReversedGraphProvides an edge-reversed view g' of a directed graph g.Classorg.jgrapht.graphJGraph
EdgeSetFactoryA factory for edge sets.Interfaceorg.jgrapht.graphJGraph
EdgeTraversalEventA traversal event for a graph edge.Classorg.jgrapht.eventJGraph
EdmondsBlossomShrinkingAn implementation of Edmonds Blossom Shrinking algorithm for constructing maximum matchings on graphs.Classorg.jgrapht.algJGraph
EdmondsKarpMaximumFlow directed graph where each edge has a capacity and each edge receives a flow.Classorg.jgrapht.algJGraph
EmptyGraphGenerator graph of any size.Classorg.jgrapht.generateJGraph
EquivalenceComparatorThis interface distinguishes between Equivalence sets.Interfaceorg.jgrapht.experimental.equivalenceJGraph
EquivalenceComparatorChainA container of comparators, which are tested in a chain until the first result can be supplied.Interfaceorg.jgrapht.experimental.equivalenceJGraph
EquivalenceComparatorChainBaseThis class implements comparator chaining.Classorg.jgrapht.experimental.equivalenceJGraph
EquivalenceSetEquivalenceSet is a Set of elements which have been determined to be equivalent using EquivalenceComparator.Classorg.jgrapht.experimental.equivalenceJGraph
EquivalenceSetCreatorClassorg.jgrapht.experimental.equivalenceJGraph
EulerianCircuitThis algorithm will check whether a graph is Eulerian (hence it contains an circuit).Classorg.jgrapht.algJGraph
ExactAlgorithmInterfaceorg.jgrapht.experimental.algJGraph
FibonacciHeapThis class implements a Fibonacci heap data structure.Classorg.jgrapht.utilJGraph
FibonacciHeapNode for maintaining the structure of the heap.Classorg.jgrapht.utilJGraph
FloydWarshallShortestPaths Floyd-Warshall algorithm finds all shortest paths (all n^2 of them) in O(n^3) time.Classorg.jgrapht.algJGraph
GmlExporterExports a graph into a GML file (Graph Modelling Language).Classorg.jgrapht.extJGraph
GraphThe root interface in the graph hierarchy.Interfaceorg.jgraphtJGraph
GraphChangeEventAn event which indicates that a graph has changed.Classorg.jgrapht.eventJGraph
GraphDelegatorA graph backed by the the graph specified at the constructor, which delegates all its methods to the backing graph.Classorg.jgrapht.graphJGraph
GraphEdgeChangeEventAn event which indicates that a graph edge has changed, or is about to change.Classorg.jgrapht.eventJGraph
GraphGeneratorGraphGenerator defines an interface for generating new graph structures.Interfaceorg.jgrapht.generateJGraph
GraphHelperA collection of utilities to assist the working with graphs.Classorg.jgraphtJGraph
GraphIsomorphismInspectorIsomorphism Overview Isomorphism is the problem of testing whether two graphs are topologicallyInterfaceorg.jgrapht.experimental.isomorphismJGraph
GraphIteratorInterfaceorg.jgrapht.traverseJGraph
GraphListenerA listener that is notified when the graph changes.Interfaceorg.jgrapht.eventJGraph
GraphMappingGraphMapping represents a bidirectional mapping between two graphs (called graph1 and graph2), which allows the caller to obtain the matching vertex orInterfaceorg.jgraphtJGraph
GraphMLExporterExports a graph into a GraphML file.Classorg.jgrapht.extJGraph
GraphOrderingHolds graph information as int labels only.Classorg.jgrapht.experimental.isomorphismJGraph
GraphPathA GraphPath represents a path in a Graph.Interfaceorg.jgraphtJGraph
GraphPathImplGraphPathImpl is a default implementation of GraphPath.Classorg.jgrapht.graphJGraph
GraphReaderClassorg.jgrapht.experimentalJGraph
GraphsA collection of utilities to assist with graph manipulation.Classorg.jgraphtJGraph
GraphSquareClassorg.jgrapht.experimentalJGraph
GraphTestsClassorg.jgrapht.experimentalJGraph
GraphUnionRead-only union of two graphs: G1 and G2.Classorg.jgrapht.graphJGraph
GraphVertexChangeEventAn event which indicates that a graph vertex has changed, or is about to change.Classorg.jgrapht.eventJGraph
GreedyColoringClassorg.jgrapht.experimental.alg.colorJGraph
GridGraphGeneratorGenerates a bidirectional grid graph of any size.Classorg.jgrapht.generateJGraph
HamiltonianCycleThis class will deal with finding the optimal or approximately optimal minimum tour (hamiltonian cycle) or commonly known as the TravelingClassorg.jgrapht.algJGraph
HelloJGraphTA simple introduction to using JGraphT.Classorg.jgrapht.demoJGraph
HopcroftKarpBipartiteMatchingThis class is an implementation of the Hopcroft-Karp algorithm which finds a maximum matching in an undirected simple bipartite graph.Classorg.jgrapht.algJGraph
HyperCubeGraphGenerator cube graph of any size.Classorg.jgrapht.generateJGraph
IntArrayGraphAlgorithmClassorg.jgrapht.experimental.algJGraph
IntegerEdgeNameProviderAssigns a unique integer to represent each edge.Classorg.jgrapht.extJGraph
IntegerNameProviderAssigns a unique integer to represent each vertex.Classorg.jgrapht.extJGraph
IntegerPermutationIterIterates through permutations of N elements.Classorg.jgrapht.experimental.permutationJGraph
IsomorphismRelationHolds an isomorphism relation for two graphs.Classorg.jgrapht.experimental.isomorphismJGraph
JGraphAdapterDemoA demo applet that shows how to use JGraph to visualize JGraphT graphs.Classorg.jgrapht.demoJGraph
JGraphModelAdapterAn adapter that reflects a JGraphT graph as a JGraph graph.Classorg.jgrapht.extJGraph
JGraphModelAdapter .CellFactoryCreates the JGraph cells that reflect the respective JGraphT elements.Interfaceorg.jgrapht.ext.JGraphModelAdapterJGraph
JGraphModelAdapter .DefaultCellFactoryA simple default cell factory.Classorg.jgrapht.ext.JGraphModelAdapterJGraph
JGraphXAdapterAdapter to draw a JGraphT graph with the JGraphX drawing library.Classorg.jgrapht.extJGraph
JGraphXAdapterDemoA demo applet that shows how to use JGraphX to visualize JGraphT graphs.Classorg.jgrapht.demoJGraph
JohnsonSimpleCyclesFind all simple cycles of a directed graph using the Johnson's algorithm.Classorg.jgrapht.alg.cycleJGraph
KruskalMinimumSpanningTreeAn implementation of Kruskal's minimum spanning tree algorithm.Classorg.jgrapht.algJGraph
KShortestPathsThe algorithm determines the k shortest simple paths in increasing order of weight.Classorg.jgrapht.algJGraph
KuhnMunkresMinimalWeightBipartitePerfectMatchingKuhn-Munkres algorithm (named in honor of Harold Kuhn and James Munkres) solving assignment problem also known as hungarian algorithmClassorg.jgrapht.algJGraph
KuhnMunkresMinimalWeightBipartitePerfectMatching .KuhnMunkresMatrixImplementationClassorg.jgrapht.alg.KuhnMunkresMinimalWeightBipartitePerfectMatchingJGraph
LinearGraphGeneratorGenerates a linear graph of any size.Classorg.jgrapht.generateJGraph
ListenableDirectedGraphA directed graph which is also ListenableGraph.Classorg.jgrapht.graphJGraph
ListenableDirectedWeightedGraphA directed weighted graph which is also ListenableGraph.Classorg.jgrapht.graphJGraph
ListenableGraphA graph that supports listeners on structural change events.Interfaceorg.jgraphtJGraph
ListenableUndirectedGraphAn undirected graph which is also ListenableGraph.Classorg.jgrapht.graphJGraph
ListenableUndirectedWeightedGraphAn undirected weighted graph which is also ListenableGraph.Classorg.jgrapht.graphJGraph
MaskFunctorA functor interface for masking out vertices and edges of a graph.Interfaceorg.jgrapht.graphJGraph
MaskSubgraphAn unmodifiable subgraph induced by a vertex/edge masking function.Classorg.jgrapht.graphJGraph
MatchingAlgorithmAllows to derive matching fromReturns set of edges making up the matchingInterfaceorg.jgrapht.alg.interfacesJGraph
MathUtilMath Utilities.Classorg.jgrapht.utilJGraph
MatrixExporterExports a graph to a plain text matrix format, which can be processed by matrix manipulation software, such as Classorg.jgrapht.extJGraph
MinimumSpanningTree minimum spanning tree from given undirected connected graph.Interfaceorg.jgrapht.alg.interfacesJGraph
MinSourceSinkCutGiven a directed, weighted graph G(V,E).Classorg.jgrapht.algJGraph
ModifiableIntegerThe ModifiableInteger class wraps a value of the primitive type int in an object, similarly to Integer.Classorg.jgrapht.utilJGraph
MultigraphA multigraph.Classorg.jgrapht.graphJGraph
NaiveLcaFinderClassorg.jgrapht.algJGraph
NeighborIndexMaintains a cache of each vertex's neighbors.Classorg.jgrapht.algJGraph
ParanoidGraphParanoidGraph provides a way to verify that objects added to a graph obey the standard equals/hashCode contract.Classorg.jgrapht.graphJGraph
PartiteRandomGraphGeneratorPartiteRandomGraphGenerator generates a partite uniform random graph of any size.Classorg.jgrapht.experimentalJGraph
PatonCycleBaseFind a cycle base of an undirected graph using the Paton's algorithm.Classorg.jgrapht.alg.cycleJGraph
PerformanceDemoA simple demo to test memory and CPU consumption on a graph with 3 million NOTE: To run this demo you may need to increase the JVM max mem size.Classorg.jgrapht.demoJGraph
PermutationFactoryFactory to create Permutations of several types and use them as Enumerations.Classorg.jgrapht.experimental.permutationJGraph
PrefetchIteratorUtility class to help implement an iterator/enumerator in which the hasNext() method needs to calculate the next elements ahead of time.Classorg.jgrapht.utilJGraph
PrefetchIterator .NextElementFunctorYou must implement that NoSuchElementException is thrown on nextElement() if it is out of bound.Interfaceorg.jgrapht.util.PrefetchIteratorJGraph
PrimMinimumSpanningTreeAn implementation of Prim's algorithm that finds a minimum spanning tree/forest subject toClassorg.jgrapht.algJGraph
PseudographA pseudograph.Classorg.jgrapht.graphJGraph
RandomGraphGeneratorThis Generator creates a random-topology graph of a specified number of vertexes and edges.Classorg.jgrapht.generateJGraph
RandomGraphGenerator .EdgeTopologyFactoryThis class is used to generate the edge topology for a graph.Interfaceorg.jgrapht.generate.RandomGraphGeneratorJGraph
RandomGraphHelperUniformRandomGraphGenerator generates a uniform random graph of any size.Classorg.jgrapht.experimentalJGraph
RingGraphGeneratorGenerates a ring graph of any size.Classorg.jgrapht.generateJGraph
ScaleFreeGraphGeneratorGenerates directed or undirected scale-free network of any size.Classorg.jgrapht.generateJGraph
SimpleDirectedGraphA simple directed graph.Classorg.jgrapht.graphJGraph
SimpleDirectedWeightedGraphA simple directed weighted graph.Classorg.jgrapht.graphJGraph
SimpleGraphA simple graph.Classorg.jgrapht.graphJGraph
SimpleGraphPathA vertex-based representation of a simple path.Classorg.jgrapht.graphJGraph
SimpleWeightedBipartiteGraphMatrixGeneratorClassorg.jgrapht.generateJGraph
SimpleWeightedGraphA simple weighted graph.Classorg.jgrapht.graphJGraph
SimpleWeightedGraphMatrixGeneratorClassorg.jgrapht.generateJGraph
StarGraphGenerator graph of any size.Classorg.jgrapht.generateJGraph
StoerWagnerMinimumCut Wagner minimum cut algorithm.Classorg.jgrapht.algJGraph
StringEdgeNameProviderGenerates edge names by invoking Object.Classorg.jgrapht.extJGraph
StringNameProviderGenerates vertex names by invoking Object.Classorg.jgrapht.extJGraph
StrongConnectivityInspectorComplements the ConnectivityInspector class with the capability to compute the strongly connected components of a directedClassorg.jgrapht.algJGraph
SubgraphA subgraph is a graph that has a subset of vertices and a subset of edges with respect to some base graph.Classorg.jgrapht.graphJGraph
SzwarcfiterLauerSimpleCyclesFind all simple cycles of a directed graph using the Schwarcfiter and Lauer's J.Classorg.jgrapht.alg.cycleJGraph
TarjanLowestCommonAncestorClassorg.jgrapht.algJGraph
TarjanLowestCommonAncestor .LcaRequestResponseClassorg.jgrapht.alg.TarjanLowestCommonAncestorJGraph
TarjanSimpleCyclesFind all simple cycles of a directed graph using the Tarjan's algorithm.Classorg.jgrapht.alg.cycleJGraph
TiernanSimpleCyclesFind all simple cycles of a directed graph using the Tiernan's algorithm.Classorg.jgrapht.alg.cycleJGraph
TopologicalOrderIterator topological sort is a permutation p of the vertices of a graph such that an edge (i,j) implies that i appears before jClassorg.jgrapht.traverseJGraph
TransitiveClosureConstructs the transitive closure of the input graph.Classorg.jgrapht.algJGraph
TraversalListenerA listener on graph iterator or on a graph traverser.Interfaceorg.jgrapht.eventJGraph
TraversalListenerAdapterAn empty do-nothing implementation of the TraversalListener interface used for subclasses.Classorg.jgrapht.eventJGraph
TypeUtilTypeUtil isolates type-unsafety so that code which uses it for legitimate reasons can stay warning-free.Classorg.jgrapht.utilJGraph
UndirectedCycleBaseA common interface for classes implementing algorithms for finding a cycle base of an undirected graph.Interfaceorg.jgrapht.alg.cycleJGraph
UndirectedGraphA graph whose all edges are undirected.Interfaceorg.jgraphtJGraph
UndirectedGraphBuilderA builder class for Graph.Classorg.jgrapht.graph.builderJGraph
UndirectedGraphBuilderBaseBase class for UndirectedGraphBuilder for extending.Classorg.jgrapht.graph.builderJGraph
UndirectedGraphUnionSee Also:Serialized FormReturns the degree of the specified vertex.Classorg.jgrapht.graphJGraph
UndirectedMaskSubgraphAn undirected graph that is a MaskSubgraph on another graph.Classorg.jgrapht.graphJGraph
UndirectedSubgraphAn undirected graph that is a subgraph on other graph.Classorg.jgrapht.graphJGraph
UndirectedWeightedGraphBuilderA builder class for undirected weighted graphs.Classorg.jgrapht.graph.builderJGraph
UndirectedWeightedGraphBuilderBaseBase class for UndirectedWeightedGraphBuilder for extending.Classorg.jgrapht.graph.builderJGraph
UndirectedWeightedSubgraphAn undirected weighted graph that is a subgraph on other graph.Classorg.jgrapht.graphJGraph
UniformEquivalenceComparatorThis Equivalence comparator acts as if all elements are in one big global equivalence class.Classorg.jgrapht.experimental.equivalenceJGraph
UniformRandomGraphGeneratorUniformRandomGraphGenerator generates a uniform random graph of any size.Classorg.jgrapht.experimentalJGraph
UnionFindAn implementation of Union Find data structure.Classorg.jgrapht.alg.utilJGraph
UnmodifiableDirectedGraphA directed graph that cannot be modified.Classorg.jgrapht.graphJGraph
UnmodifiableGraphAn unmodifiable view of the backing graph specified in the constructor.Classorg.jgrapht.graphJGraph
UnmodifiableUndirectedGraphAn undirected graph that cannot be modified.Classorg.jgrapht.graphJGraph
VertexCoversAlgorithms to find a vertex cover for a graph.Classorg.jgrapht.algJGraph
VertexDegreeComparatorCompares two vertices based on their degree.Classorg.jgrapht.alg.utilJGraph
VertexDegreeEquivalenceComparatorTwo vertexes are equivalent under this comparator if and only if: they have the same IN degreeClassorg.jgrapht.experimental.isomorphismJGraph
VertexFactoryA vertex factory used by graph algorithms for creating new vertices.Interfaceorg.jgraphtJGraph
VertexNameProviderAssigns a display name for each of the graph vertices.Interfaceorg.jgrapht.extJGraph
VertexPairRepresentation of a pair of vertices; to be replaced by Pair if Sun ever gets around to adding Pair to java.Classorg.jgrapht.utilJGraph
VertexSetListenerA listener that is notified when the graph's vertex set changes.Interfaceorg.jgrapht.eventJGraph
VertexTraversalEventA traversal event for a graph vertex.Classorg.jgrapht.eventJGraph
VisioExporterExports a graph to a csv format that can be imported into MS Visio.Classorg.jgrapht.extJGraph
WeightCombinerBinary operator for edge weights.Interfaceorg.jgrapht.utilJGraph
WeightedGraphAn interface for a graph whose edges have non-uniform weights.Interfaceorg.jgraphtJGraph
WeightedGraphGeneratorClassorg.jgrapht.generateJGraph
WeightedGraphGeneratorAdapterWeightedGraphGenerator defines an interface for generating graph structures having edges weighted with real values.Classorg.jgrapht.generateJGraph
WeightedMatchingAlgorithmAllows to derive weighted matching from general graphSee Also:MatchingAlgorithmInterfaceorg.jgrapht.alg.interfacesJGraph
WeightedMultigraphA weighted multigraph.Classorg.jgrapht.graphJGraph
WeightedPseudographA weighted pseudograph.Classorg.jgrapht.graphJGraph
WheelGraphGenerator graph of any size.Classorg.jgrapht.generateJGraph