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

ucar.nc2.ft.grid.IsMissingEvaluator Maven / Gradle / Ivy

package ucar.nc2.ft.grid;

/**
 * Description
 *
 * @author John
 * @since 12/27/12
 */
public interface IsMissingEvaluator {

  /**
   * true if there may be missing data
   * @return true if there may be missing data
   */
  public boolean hasMissing();

  /**
   * if val is a missing data value
   * @param val test this value
   * @return true if val is missing data
   */
  public boolean isMissing(double val);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy