Package org.esa.snap.core.util.math
Interface IndexValidator
-
public interface IndexValidator
An interface used as parameter to several methods which perform some actions on data arrays. It is used to decide whether or not an array value shall be taken into account for a particular computation.
-
-
Field Summary
Fields Modifier and Type Field Description static IndexValidator
TRUE
The validator whosevalidateIndex(int)
method always returns true.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
validateIndex(int index)
If the givenindex
or the value at the givenindex
is valid, this method should returntrue
, otherwisefalse
.
-
-
-
Field Detail
-
TRUE
static final IndexValidator TRUE
The validator whosevalidateIndex(int)
method always returns true.
-
-