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

edu.uci.ics.jung.visualization.spatial.rtree.LeafSplitter Maven / Gradle / Ivy

package edu.uci.ics.jung.visualization.spatial.rtree;

import java.awt.geom.Rectangle2D;
import java.util.Collection;
import java.util.Map;

/**
 * Interface for splitting LeafNodes containing Map.Entries as children
 *
 * @param  the type of the elements
 * @author Tom Nelson
 */
public interface LeafSplitter {

  Pair> split(
      Collection> entries, Map.Entry newEntry);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy