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
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 protected abstract AbstractNode
AbstractSTRtree. createNode(int level)
protected AbstractNode
SIRtree. createNode(int level)
protected AbstractNode
STRtree. createNode(int level)
AbstractNode
AbstractSTRtree. getRoot()
Gets the root node of the tree.protected AbstractNode
AbstractSTRtree. lastNode(List nodes)
Methods in org.locationtech.jts.index.strtree with parameters of type AbstractNode Modifier and Type Method Description protected int
AbstractSTRtree. depth(AbstractNode node)
protected int
AbstractSTRtree. size(AbstractNode node)
Constructors in org.locationtech.jts.index.strtree with parameters of type AbstractNode Constructor Description AbstractSTRtree(int nodeCapacity, AbstractNode root)
Constructs an AbstractSTRtree with the specified maximum number of child nodes that a node may have, and the root node
-