Class TidierTreeLayoutAlgorithm.Builder<V,E,T extends TidierTreeLayoutAlgorithm<V,E>,B extends TidierTreeLayoutAlgorithm.Builder<V,E,T,B>>
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.AbstractLayoutAlgorithm.Builder<V,T,B>
-
- org.jungrapht.visualization.layout.algorithms.AbstractTreeLayoutAlgorithm.Builder<V,T,B>
-
- org.jungrapht.visualization.layout.algorithms.TidierTreeLayoutAlgorithm.Builder<V,E,T,B>
-
- Type Parameters:
V
- the vertex typeE
- the edge typeT
- the type that is builtB
- the builder type
- All Implemented Interfaces:
EdgeAwareLayoutAlgorithm.Builder<V,E,T,B>
,LayoutAlgorithm.Builder<V,T,B>
- Direct Known Subclasses:
TidierRadialTreeLayoutAlgorithm.Builder
- Enclosing class:
- TidierTreeLayoutAlgorithm<V,E>
public static class TidierTreeLayoutAlgorithm.Builder<V,E,T extends TidierTreeLayoutAlgorithm<V,E>,B extends TidierTreeLayoutAlgorithm.Builder<V,E,T,B>> extends AbstractTreeLayoutAlgorithm.Builder<V,T,B> implements LayoutAlgorithm.Builder<V,T,B>, EdgeAwareLayoutAlgorithm.Builder<V,E,T,B>
a Builder to create a configured instance of an AnotherTreeLayoutAlgorithm
-
-
Field Summary
Fields Modifier and Type Field Description protected Comparator<E>
edgeComparator
protected Predicate<E>
edgePredicate
protected Comparator<V>
vertexComparator
protected Predicate<V>
vertexPredicate
-
Fields inherited from class org.jungrapht.visualization.layout.algorithms.AbstractTreeLayoutAlgorithm.Builder
correctOverlap, expandLayout, horizontalVertexSpacing, rootComparator, rootPredicate, vertexBoundsFunction, verticalVertexSpacing
-
Fields inherited from class org.jungrapht.visualization.layout.algorithms.AbstractLayoutAlgorithm.Builder
after
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
build()
B
edgeComparator(Comparator<E> edgeComparator)
B
edgePredicate(Predicate<E> edgePredicate)
B
vertexComparator(Comparator<V> vertexComparator)
B
vertexPredicate(Predicate<V> vertexPredicate)
-
Methods inherited from class org.jungrapht.visualization.layout.algorithms.AbstractTreeLayoutAlgorithm.Builder
correctOverlap, expandLayout, horizontalVertexSpacing, rootComparator, rootPredicate, self, vertexBoundsFunction, verticalVertexSpacing
-
Methods inherited from class org.jungrapht.visualization.layout.algorithms.AbstractLayoutAlgorithm.Builder
after
-
-
-
-
Field Detail
-
vertexComparator
protected Comparator<V> vertexComparator
-
edgeComparator
protected Comparator<E> edgeComparator
-
-
Method Detail
-
vertexPredicate
public B vertexPredicate(Predicate<V> vertexPredicate)
- Parameters:
vertexPredicate
-Predicate
to apply to vertices- Returns:
- this Builder
-
edgePredicate
public B edgePredicate(Predicate<E> edgePredicate)
- Parameters:
edgePredicate
-Predicate
to apply to edges- Returns:
- this Builder
-
vertexComparator
public B vertexComparator(Comparator<V> vertexComparator)
- Parameters:
vertexComparator
-Comparator
to sort vertices- Returns:
- this Builder
-
edgeComparator
public B edgeComparator(Comparator<E> edgeComparator)
- Parameters:
edgeComparator
-Comparator
to sort edges- Returns:
- this Builder
-
build
public T build()
- Specified by:
build
in interfaceLayoutAlgorithm.Builder<V,E,T extends TidierTreeLayoutAlgorithm<V,E>>
- Specified by:
build
in classAbstractLayoutAlgorithm.Builder<V,T extends TidierTreeLayoutAlgorithm<V,E>,B extends TidierTreeLayoutAlgorithm.Builder<V,E,T,B>>
-
-