Uses of Class
org.jungrapht.visualization.layout.algorithms.util.Pair
-
Packages that use Pair Package Description org.jungrapht.visualization Frameworks and mechanisms for visualizing JUNGRAPHT graphs using Swing/AWT.org.jungrapht.visualization.layout.algorithms.eiglsperger org.jungrapht.visualization.layout.algorithms.util org.jungrapht.visualization.layout.model Support for graph layout models mapping vertices to location points -
-
Uses of Pair in org.jungrapht.visualization
Fields in org.jungrapht.visualization with type parameters of type Pair Modifier and Type Field Description protected Function<org.jgrapht.Graph<V,?>,Pair<Integer>>
DefaultVisualizationModel. initialDimensionFunction
protected Function<org.jgrapht.Graph<V,?>,Pair<Integer>>
VisualizationModel.Builder. initialDimensionFunction
protected Function<org.jgrapht.Graph<V,?>,Pair<Integer>>
VisualizationServer.Builder. initialDimensionFunction
Methods in org.jungrapht.visualization that return types with arguments of type Pair Modifier and Type Method Description Function<org.jgrapht.Graph<V,?>,Pair<Integer>>
VisualizationModel. getInitialDimensionFunction()
Method parameters in org.jungrapht.visualization with type arguments of type Pair Modifier and Type Method Description B
VisualizationModel.Builder. initialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
B
VisualizationServer.Builder. initialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
void
VisualizationModel. setInitialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
void
VisualizationServer. setInitialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
-
Uses of Pair in org.jungrapht.visualization.layout.algorithms.eiglsperger
Methods in org.jungrapht.visualization.layout.algorithms.eiglsperger that return Pair Modifier and Type Method Description static <T> Pair<InsertionOrderSplayTree<T>>
InsertionOrderSplayTree. split(InsertionOrderSplayTree<T> tree, int position)
first position elements go in left tree, the rest go in right tree.static <T> Pair<InsertionOrderSplayTree<T>>
InsertionOrderSplayTree. split(InsertionOrderSplayTree<T> tree, T key)
find key, make it the root, left children go in first tree, right children go in second tree.Methods in org.jungrapht.visualization.layout.algorithms.eiglsperger with parameters of type Pair Modifier and Type Method Description static <T> InsertionOrderSplayTree<T>
InsertionOrderSplayTree. join(Pair<InsertionOrderSplayTree<T>> trees)
-
Uses of Pair in org.jungrapht.visualization.layout.algorithms.util
Methods in org.jungrapht.visualization.layout.algorithms.util that return Pair Modifier and Type Method Description Pair<Integer>
InitialDimensionFunction. apply(org.jgrapht.Graph<V,?> graph)
Applies this function to the given argument.static <V> Pair<V>
Pair. of(V first, V second)
Methods in org.jungrapht.visualization.layout.algorithms.util with parameters of type Pair Modifier and Type Method Description Set<E>
NetworkSimplexDevelopment. getCrossComponentEdges(org.jgrapht.Graph<V,E> spanningTree, Pair<Set<V>> headAndTail)
-
Uses of Pair in org.jungrapht.visualization.layout.model
Fields in org.jungrapht.visualization.layout.model with type parameters of type Pair Modifier and Type Field Description protected Function<org.jgrapht.Graph<V,?>,Pair<Integer>>
AbstractLayoutModel.Builder. initialDimensionFunction
protected Function<org.jgrapht.Graph<V,?>,Pair<Integer>>
AbstractLayoutModel. initialDimensionFunction
Method parameters in org.jungrapht.visualization.layout.model with type arguments of type Pair Modifier and Type Method Description B
AbstractLayoutModel.Builder. initialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
void
AbstractLayoutModel. setInitialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
void
AggregateLayoutModel. setInitialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
void
LayoutModel. setInitialDimensionFunction(Function<org.jgrapht.Graph<V,?>,Pair<Integer>> initialDimensionFunction)
The initialDimensionFunction sets the layout area bounds by evaluating theGraph
-