org.khelekore.prtree.NodeFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of georewrite Show documentation
Show all versions of georewrite Show documentation
重写geoserver发送到h2的sql,以实现自定义数据源
package org.khelekore.prtree;
/** A factory that creates the nodes (either leaf or internal).
* @param the data stored in the node
* @param the type of the node
*/
interface NodeFactory {
/** Create a new node
* @param data the data entries for the node, fully filled.
* @return the new node
*/
N create (Object[] data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy