public interface DoubleRangePredicate
| Modifier and Type | Method and Description |
|---|---|
boolean |
test(double valueToTest,
double rangeStart,
double rangeEnd)
Returns true if valueToTest meets the criteria of this predicate when rangeStart is considered
|
boolean test(double valueToTest,
double rangeStart,
double rangeEnd)
Example (to compare all the values v in a column such that v is greater than 4.0 and less than 6.0.
valueToTest - the value you're checking. Often this is the value of a cell in a double columnrangeStart - the start of the range to compare against. Often this is a single value for all comparisonsrangeEnd - the end of the range to compare against. Often this is a single value for all comparisonsCopyright © 2019. All rights reserved.