
com.jamieswhiteshirt.rtree3i.Selector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rtree-3i-lite Show documentation
Show all versions of rtree-3i-lite Show documentation
Immutable map applying a spatial index to keys based on R-Trees
The newest version!
package com.jamieswhiteshirt.rtree3i;
import java.util.List;
/**
* A heuristic to select which node to add an Entry to on R-tree insertion.
*/
public interface Selector {
/**
* Returns the node from a list of nodes that an object with the given bounding box would be added to.
* @param type of key of entry in tree
* @param type of value of entry in tree
* @param box box
* @param nodes nodes to select from
* @return one of the given nodes
*/
Node select(Box box, List> nodes);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy