ucar.nc2.ft.grid.IsMissingEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdm Show documentation
Show all versions of cdm Show documentation
The NetCDF-Java Library is a Java interface to NetCDF files,
as well as to many other types of scientific data formats.
The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy