Uses of Interface
edu.uci.ics.jung.graph.Tree
-
Packages that use Tree Package Description edu.uci.ics.jung.graph Interfaces for the JUNG graph types, and some representative implementations.edu.uci.ics.jung.graph.util Utility interfaces and classes for the JUNG API. -
-
Uses of Tree in edu.uci.ics.jung.graph
Classes in edu.uci.ics.jung.graph that implement Tree Modifier and Type Class Description class
DelegateTree<V,E>
An implementation ofTree
that delegates to a specified instance ofDirectedGraph
.class
OrderedKAryTree<V,E>
An implementation ofTree
in which each vertex has ≤ k children.Methods in edu.uci.ics.jung.graph that return types with arguments of type Tree Modifier and Type Method Description static <V,E>
com.google.common.base.Supplier<Tree<V,E>>DelegateTree. getFactory()
java.util.Collection<Tree<V,E>>
DelegateForest. getTrees()
java.util.Collection<Tree<V,E>>
DelegateTree. getTrees()
java.util.Collection<Tree<V,E>>
Forest. getTrees()
Returns a view of this graph as a collection ofTree
instances.java.util.Collection<Tree<V,E>>
OrderedKAryTree. getTrees()
Methods in edu.uci.ics.jung.graph with parameters of type Tree Modifier and Type Method Description void
DelegateForest. addTree(Tree<V,E> tree)
Addstree
to this graph as an element of this forest. -
Uses of Tree in edu.uci.ics.jung.graph.util
Methods in edu.uci.ics.jung.graph.util that return Tree Modifier and Type Method Description static <V,E>
Tree<V,E>TreeUtils. getSubTree(Forest<V,E> forest, V root)
Returns the subtree oftree
which is rooted atroot
as aForest
.Methods in edu.uci.ics.jung.graph.util with parameters of type Tree Modifier and Type Method Description static <V,E>
edu.uci.ics.jung.graph.util.Graphs.SynchronizedTree<V,E>Graphs. synchronizedTree(Tree<V,E> tree)
Returns a synchronized Tree backed by the passed Tree.static <V,E>
edu.uci.ics.jung.graph.util.Graphs.UnmodifiableTree<V,E>Graphs. unmodifiableTree(Tree<V,E> tree)
Returns an unmodifiableTree
backed by the passed tree.
-