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.edu.uci.ics.jung.samples Sample applications created using JUNG, largely focused on visualization. -
-
Uses of Tree in edu.uci.ics.jung.graph
Classes in edu.uci.ics.jung.graph that implement Tree Modifier and Type Class Description classDelegateTree<V,E>An implementation ofTreethat delegates to a specified instance ofDirectedGraph.classOrderedKAryTree<V,E>An implementation ofTreein 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 ofTreeinstances.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 voidDelegateForest. addTree(Tree<V,E> tree)Addstreeto this graph as an element of this forest. -
Uses of Tree in edu.uci.ics.jung.graph.util
Classes in edu.uci.ics.jung.graph.util that implement Tree Modifier and Type Class Description (package private) static classGraphs.SynchronizedTree<V,E>(package private) static classGraphs.UnmodifiableTree<V,E>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 oftreewhich is rooted atrootas aForest.Methods in edu.uci.ics.jung.graph.util that return types with arguments of type Tree Modifier and Type Method Description java.util.Collection<Tree<V,E>>Graphs.SynchronizedForest. getTrees()java.util.Collection<Tree<V,E>>Graphs.UnmodifiableForest. getTrees()java.util.Collection<Tree<V,E>>Graphs.UnmodifiableTree. getTrees()Methods in edu.uci.ics.jung.graph.util with parameters of type Tree Modifier and Type Method Description static <V,E>
Graphs.SynchronizedTree<V,E>Graphs. synchronizedTree(Tree<V,E> tree)Returns a synchronized Tree backed by the passed Tree.static <V,E>
Graphs.UnmodifiableTree<V,E>Graphs. unmodifiableTree(Tree<V,E> tree)Returns an unmodifiableTreebacked by the passed tree.Constructors in edu.uci.ics.jung.graph.util with parameters of type Tree Constructor Description SynchronizedTree(Tree<V,E> delegate)Creates a new instance based on the provideddelegate.UnmodifiableTree(Tree<V,E> delegate) -
Uses of Tree in edu.uci.ics.jung.samples
Fields in edu.uci.ics.jung.samples with type parameters of type Tree Modifier and Type Field Description (package private) com.google.common.base.Supplier<Tree<java.lang.String,java.lang.Integer>>BalloonLayoutDemo. treeFactory(package private) com.google.common.base.Supplier<Tree<java.lang.String,java.lang.Integer>>L2RTreeLayoutDemo. treeFactory(package private) com.google.common.base.Supplier<Tree<java.lang.String,java.lang.Integer>>RadialTreeLensDemo. treeFactory(package private) com.google.common.base.Supplier<Tree<java.lang.String,java.lang.Integer>>TreeCollapseDemo. treeFactory(package private) com.google.common.base.Supplier<Tree<java.lang.String,java.lang.Integer>>TreeLayoutDemo. treeFactory
-