Uses of Class
org.jungrapht.visualization.spatial.rtree.SplitterContext
-
Packages that use SplitterContext Package Description org.jungrapht.visualization.spatial Visualization mechanisms for supporting spatial data structures.org.jungrapht.visualization.spatial.rtree Visualization mechanisms for supporting RTree spatial data structures. -
-
Uses of SplitterContext in org.jungrapht.visualization.spatial
Fields in org.jungrapht.visualization.spatial declared as SplitterContext Modifier and Type Field Description protected SplitterContext<T>
SpatialRTree.Builder. splitterContext
protected SplitterContext<T>
SpatialRTree. splitterContext
a container for the splitter functions to use, quadratic or R*TreeMethods in org.jungrapht.visualization.spatial with parameters of type SplitterContext Modifier and Type Method Description SpatialRTree.Builder<T,NT>
SpatialRTree.Builder. splitterContext(SplitterContext<T> splitterContext)
Constructors in org.jungrapht.visualization.spatial with parameters of type SplitterContext Constructor Description SpatialRTree(LayoutModel<NT> layoutModel, SplitterContext<T> splitterContext, boolean reinsert)
create a new instance with the a LayoutModel and a style of splitter to use -
Uses of SplitterContext in org.jungrapht.visualization.spatial.rtree
Methods in org.jungrapht.visualization.spatial.rtree that return SplitterContext Modifier and Type Method Description static <T> SplitterContext<T>
SplitterContext. of(LeafSplitter<T> leafSplitter, Splitter<T> splitter)
Methods in org.jungrapht.visualization.spatial.rtree with parameters of type SplitterContext Modifier and Type Method Description Node<T>
InnerNode. add(SplitterContext<T> splitterContext, T element, Rectangle2D bounds)
Node<T>
LeafNode. add(SplitterContext<T> splitterContext, Map.Entry<T,Rectangle2D> entry)
add the passed Entry to the mapNode<T>
LeafNode. add(SplitterContext<T> splitterContext, Map.Entry<T,Rectangle2D>... entries)
Node<T>
LeafNode. add(SplitterContext<T> splitterContext, T element, Rectangle2D bounds)
Node<T>
Node. add(SplitterContext<T> splitterContext, T element, Rectangle2D bounds)
static <T> RTree<T>
RTree. add(RTree<T> rtree, SplitterContext<T> splitterContext, Map.Entry<T,Rectangle2D> entry)
static <T> RTree<T>
RTree. add(RTree<T> rtree, SplitterContext<T> splitterContext, T element, Rectangle2D bounds)
add one element to the RTree.static <T> RTree<T>
RTree. addAll(RTree<T> rtree, SplitterContext<T> splitterContext, Collection<Map.Entry<T,Rectangle2D>> entries)
static <T> RTree<T>
RTree. bulkAdd(RTree<T> rtree, SplitterContext<T> splitterContext, Collection<Map.Entry<T,Rectangle2D>> items)
static <T> RTree
RTree. reinsert(RTree<T> rtree, SplitterContext<T> splitterContext)
-