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

com.metamx.collections.spatial.split.SplitStrategy Maven / Gradle / Ivy

package com.metamx.collections.spatial.split;

import com.metamx.collections.spatial.Node;

/**
 */
public interface SplitStrategy
{
  public boolean needToSplit(Node node);

  public Node[] split(Node node);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy