Uses of Class
org.locationtech.jts.index.strtree.AbstractNode
-
Packages that use AbstractNode Package Description org.locationtech.jts.index.strtree Contains 2-D and 1-D versions of the Sort-Tile-Recursive (STR) tree, a query-only R-tree. -
-
Uses of AbstractNode in org.locationtech.jts.index.strtree
Subclasses of AbstractNode in org.locationtech.jts.index.strtree Modifier and Type Class Description private static class
STRtree.STRtreeNode
Fields in org.locationtech.jts.index.strtree declared as AbstractNode Modifier and Type Field Description protected AbstractNode
AbstractSTRtree. root
Methods in org.locationtech.jts.index.strtree that return AbstractNode Modifier and Type Method Description private AbstractNode
AbstractSTRtree. createHigherLevels(java.util.List boundablesOfALevel, int level)
Creates the levels higher than the given levelprotected abstract AbstractNode
AbstractSTRtree. createNode(int level)
protected AbstractNode
SIRtree. createNode(int level)
protected AbstractNode
STRtree. createNode(int level)
AbstractNode
AbstractSTRtree. getRoot()
protected AbstractNode
AbstractSTRtree. lastNode(java.util.List nodes)
Methods in org.locationtech.jts.index.strtree with parameters of type AbstractNode Modifier and Type Method Description private void
AbstractSTRtree. boundablesAtLevel(int level, AbstractNode top, java.util.Collection boundables)
protected int
AbstractSTRtree. depth(AbstractNode node)
private java.util.List
AbstractSTRtree. itemsTree(AbstractNode node)
private void
AbstractSTRtree. queryInternal(java.lang.Object searchBounds, AbstractNode node, java.util.List matches)
private void
AbstractSTRtree. queryInternal(java.lang.Object searchBounds, AbstractNode node, ItemVisitor visitor)
private boolean
AbstractSTRtree. remove(java.lang.Object searchBounds, AbstractNode node, java.lang.Object item)
private boolean
AbstractSTRtree. removeItem(AbstractNode node, java.lang.Object item)
protected int
AbstractSTRtree. size(AbstractNode node)
-