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

org.khelekore.prtree.NodeFactory Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
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