Uses of Interface
edu.uci.ics.jung.graph.Tree
Packages that use Tree
Package
Description
Interfaces for the JUNG graph types, and some representative implementations.
Utility interfaces and classes for the JUNG API.
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 TreeModifier and TypeClassDescriptionclassDelegateTree<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 TreeModifier and TypeMethodDescriptionstatic final <V,E> com.google.common.base.Supplier <Tree<V, E>> DelegateTree.getFactory()Collection<Tree<V, E>> DelegateForest.getTrees()Collection<Tree<V, E>> DelegateTree.getTrees()Collection<Tree<V, E>> Forest.getTrees()Returns a view of this graph as a collection ofTreeinstances.Collection<Tree<V, E>> OrderedKAryTree.getTrees()Methods in edu.uci.ics.jung.graph with parameters of type Tree -
Uses of Tree in edu.uci.ics.jung.graph.util
Classes in edu.uci.ics.jung.graph.util that implement TreeModifier and TypeClassDescription(package private) static class(package private) static classMethods in edu.uci.ics.jung.graph.util that return TreeModifier and TypeMethodDescriptionstatic <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 TreeModifier and TypeMethodDescriptionCollection<Tree<V, E>> Graphs.SynchronizedForest.getTrees()Collection<Tree<V, E>> Graphs.UnmodifiableForest.getTrees()Collection<Tree<V, E>> Graphs.UnmodifiableTree.getTrees()Methods in edu.uci.ics.jung.graph.util with parameters of type TreeModifier and TypeMethodDescriptionstatic <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 TreeModifierConstructorDescriptionSynchronizedTree(Tree<V, E> delegate) Creates a new instance based on the provideddelegate.privateUnmodifiableTree(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 TreeModifier and TypeFieldDescriptionBalloonLayoutDemo.treeFactoryL2RTreeLayoutDemo.treeFactoryRadialTreeLensDemo.treeFactoryTreeCollapseDemo.treeFactoryTreeLayoutDemo.treeFactory