Uses of Interface
org.jungrapht.visualization.layout.algorithms.LayoutAlgorithm
-
Packages that use LayoutAlgorithm Package Description org.jungrapht.samples.sugiyama.test.algorithms org.jungrapht.samples.util Sample applications utilitiesorg.jungrapht.visualization Frameworks and mechanisms for visualizing JUNGRAPHT graphs using Swing/AWT.org.jungrapht.visualization.layout.algorithms Support for graph layout algorithmsorg.jungrapht.visualization.layout.model Support for graph layout models mapping vertices to location pointsorg.jungrapht.visualization.util Utilities for graph visualization. -
-
Uses of LayoutAlgorithm in org.jungrapht.samples.sugiyama.test.algorithms
Classes in org.jungrapht.samples.sugiyama.test.algorithms that implement LayoutAlgorithm Modifier and Type Class Description class
BrandesKopfLayoutAlgorithm<V,E>
Test only, as this class is hard-coded for a specific test graphclass
LayeredLayoutAlgorithm<V,E>
Test only, as this class is hard-coded for a specific test graphclass
TestEiglspergerLayoutAlgorithm<V,E>
Test only, as this class is hard-coded for a specific test graphclass
TestSugiyamaLayoutAlgorithm<V,E>
Test only, as this class is hard-coded for a specific test graph -
Uses of LayoutAlgorithm in org.jungrapht.samples.util
Fields in org.jungrapht.samples.util with type parameters of type LayoutAlgorithm Modifier and Type Field Description LayoutAlgorithm.Builder<V,LayoutAlgorithm<V>,?>
LayoutFunction.Layout. builder
Methods in org.jungrapht.samples.util that return LayoutAlgorithm Modifier and Type Method Description LayoutAlgorithm
LayoutHelper.Layouts. getLayoutAlgorithm()
LayoutAlgorithm
SubLayoutHelper.Layouts. getLayoutAlgorithm()
Methods in org.jungrapht.samples.util that return types with arguments of type LayoutAlgorithm Modifier and Type Method Description LayoutAlgorithm.Builder<V,LayoutAlgorithm<V>,?>
LayoutFunction. apply(String s)
-
Uses of LayoutAlgorithm in org.jungrapht.visualization
Fields in org.jungrapht.visualization declared as LayoutAlgorithm Modifier and Type Field Description protected LayoutAlgorithm<V>
DefaultVisualizationModel. layoutAlgorithm
protected LayoutAlgorithm<V>
VisualizationModel.Builder. layoutAlgorithm
aLayoutAlgorithm
to position the graph verticesprotected LayoutAlgorithm<V>
VisualizationServer.Builder. layoutAlgorithm
the algorithm to apply to position the verticesMethods in org.jungrapht.visualization that return LayoutAlgorithm Modifier and Type Method Description LayoutAlgorithm<V>
VisualizationModel. getLayoutAlgorithm()
Methods in org.jungrapht.visualization with parameters of type LayoutAlgorithm Modifier and Type Method Description B
VisualizationModel.Builder. layoutAlgorithm(LayoutAlgorithm<V> layoutAlgorithm)
B
VisualizationServer.Builder. layoutAlgorithm(LayoutAlgorithm<V> layoutAlgorithm)
void
VisualizationModel. setLayoutAlgorithm(LayoutAlgorithm<V> layoutAlgorithm)
-
Uses of LayoutAlgorithm in org.jungrapht.visualization.layout.algorithms
Classes in org.jungrapht.visualization.layout.algorithms with type parameters of type LayoutAlgorithm Modifier and Type Interface Description static interface
LayoutAlgorithm.Builder<V,T extends LayoutAlgorithm<V>,B extends LayoutAlgorithm.Builder<V,T,B>>
Subinterfaces of LayoutAlgorithm in org.jungrapht.visualization.layout.algorithms Modifier and Type Interface Description interface
EdgeAwareLayoutAlgorithm<V,E>
A marker interface for LayoutAlgorithms that are aware of graph edges and can use the edges as part of the layout vertex positioninginterface
IterativeLayoutAlgorithm<V>
A LayoutAlgorithm that may utilize a pre-relax phase, which is a loop of calls tostep
that occurr in the current thread instead of in a new Thread.interface
RadialTreeLayout<V>
a marker interface for Tree layouts in a radial patterninterface
TreeLayout<V>
an interface forLayoutAlgorithm
that place their vertices in a tree like heirarchyClasses in org.jungrapht.visualization.layout.algorithms that implement LayoutAlgorithm Modifier and Type Class Description class
AbstractHierarchicalMinCrossLayoutAlgorithm<V,E>
The Sugiyama Hierarchical Minimum-Cross layout algorithmclass
AbstractIterativeLayoutAlgorithm<V>
For Iterative algorithms that perform delayed operations on a Thread, save off the layoutModel so that it can be accessed by the threaded code.class
AbstractLayoutAlgorithm<V>
For Layout algorithms that can run an 'after' functionclass
AbstractTreeLayoutAlgorithm<V>
A base class for tree layout algorithms.class
BalloonLayoutAlgorithm<V>
ALayout
implementation that assigns positions toTree
orGraph
vertices using associations with nested circles ("balloons").class
CircleLayoutAlgorithm<V>
ALayout
implementation that positions vertices equally spaced on a regular circle.class
DAGLayoutAlgorithm<V,E>
An implementation ofLayout
suitable for tree-like directed acyclic graphs.class
EdgeAwareTreeLayoutAlgorithm<V,E>
class
EiglspergerLayoutAlgorithm<V,E>
The Sugiyama Hierarchical Minimum-Cross layout algorithmclass
ForceAtlas2LayoutAlgorithm<V>
Implementation of ForceAtlas2 algorithm.class
FRLayoutAlgorithm<V>
Implements the Fruchterman-Reingold force-directed algorithm for vertex layout.class
GEMLayoutAlgorithm<V,E>
Java implementation of the gem 2D layout.class
HierarchicalMinCrossLayoutAlgorithm<V,E>
A Hierarchical Minimum-Cross layout algorithm based on Sugiyama.class
ISOMLayoutAlgorithm<V>
Implements a self-organizing map layout algorithm, based on Meyer's self-organizing graph methods.class
KKLayoutAlgorithm<V>
Implements the Kamada-Kawai algorithm for vertex layout.static class
LayoutAlgorithm.NoOp<V>
class
MultiRowEdgeAwareTreeLayoutAlgorithm<V,E>
A Multi-RowTreeLayoutAlgorithm
that can be modified with comparators and predicates for both vertices and edgesclass
MultiRowTreeLayoutAlgorithm<V>
ATreeLayoutAlgorithm
that adheres to either an original width or to the width of the widest subtree in the forest by creating new rows of tree rootsclass
RadialEdgeAwareTreeLayoutAlgorithm<V,E>
A radial layout for Tree or Forest graphs.class
RadialTreeLayoutAlgorithm<V>
A radial layout for Tree or Forest graphs.class
SpringLayoutAlgorithm<V,E>
The SpringLayout package represents a visualization of a set of vertices.class
StaticLayoutAlgorithm<V>
StaticLayout leaves the vertices in the locations specified in the LayoutModel, and has no other behavior.class
SugiyamaLayoutAlgorithm<V,E>
The Sugiyama Hierarchical Minimum-Cross layout algorithmclass
TidierRadialTreeLayoutAlgorithm<V,E>
A radial layout for Tree or Forest graphs.class
TidierTreeLayoutAlgorithm<V,E>
A more compact tree layout algorithm.class
TreeLayoutAlgorithm<V>
A simple tree layout algorithm that will allow multiple roots. -
Uses of LayoutAlgorithm in org.jungrapht.visualization.layout.model
Methods in org.jungrapht.visualization.layout.model with parameters of type LayoutAlgorithm Modifier and Type Method Description void
AbstractLayoutModel. accept(LayoutAlgorithm<V> layoutAlgorithm)
accept the visit of a LayoutAlgorithm.void
AggregateLayoutModel. accept(LayoutAlgorithm<V> layoutAlgorithm)
void
LayoutModel. accept(LayoutAlgorithm<V> layoutAlgorithm)
allow the passed LayoutAlgorithm to operate on this LayoutModel -
Uses of LayoutAlgorithm in org.jungrapht.visualization.util
Classes in org.jungrapht.visualization.util that implement LayoutAlgorithm Modifier and Type Class Description class
AnimationLayoutAlgorithm<V>
Fields in org.jungrapht.visualization.util declared as LayoutAlgorithm Modifier and Type Field Description protected LayoutAlgorithm<V>
AnimationLayoutAlgorithm.Builder. endLayoutAlgorithm
Methods in org.jungrapht.visualization.util with parameters of type LayoutAlgorithm Modifier and Type Method Description static <V,E>
voidLayoutAlgorithmTransition. animate(VisualizationServer<V,E> visualizationServer, LayoutAlgorithm<V> endLayoutAlgorithm)
static <V,E>
voidLayoutAlgorithmTransition. animate(VisualizationServer<V,E> visualizationServer, LayoutAlgorithm<V> endLayoutAlgorithm, Runnable after)
static <V,E>
voidLayoutAlgorithmTransition. apply(VisualizationServer<V,E> visualizationServer, LayoutAlgorithm<V> endLayoutAlgorithm)
static <V,E>
voidLayoutAlgorithmTransition. apply(VisualizationServer<V,E> visualizationServer, LayoutAlgorithm<V> endLayoutAlgorithm, Runnable after)
B
AnimationLayoutAlgorithm.Builder. endLayoutAlgorithm(LayoutAlgorithm<V> endLayoutAlgorithm)
-