Class TreeView<V,E>
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.util.TreeView<V,E>
-
public class TreeView<V,E> extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Comparator<E>
edgeComparator
protected Predicate<E>
edgePredicate
protected Comparator<V>
rootComparator
protected Predicate<V>
rootPredicate
protected Comparator<V>
vertexComparator
protected Predicate<V>
vertexPredicate
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <V,E>
TreeView.Builder<V,E,?,?>builder()
org.jgrapht.Graph<V,E>
buildTree(org.jgrapht.Graph<V,E> graph)
-
-
-
Field Detail
-
rootComparator
protected Comparator<V> rootComparator
-
vertexComparator
protected Comparator<V> vertexComparator
-
edgeComparator
protected Comparator<E> edgeComparator
-
-
Method Detail
-
builder
public static <V,E> TreeView.Builder<V,E,?,?> builder()
- Type Parameters:
V
- vertex typeE
- edge type- Returns:
- a Builder ready to configure
-
-