All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jamieswhiteshirt.rtree3i.Selector Maven / Gradle / Ivy

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