com.github.davidmoten.rtree.LeafFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rtree Show documentation
Show all versions of rtree Show documentation
Java implementation of an immutable in-memory R-Tree for spatial indexing
package com.github.davidmoten.rtree;
import java.util.List;
import com.github.davidmoten.rtree.geometry.Geometry;
public interface LeafFactory {
Leaf createLeaf(List> entries, Context context);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy