BetweenFilter Constructor (IValueExtractor, IComparable, IComparable, Boolean, Boolean) |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Construct a BetweenFilter for testing "Between" condition.
Namespace:
Tangosol.Util.Filter
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic BetweenFilter(
IValueExtractor extractor,
IComparable lower,
IComparable upper,
bool includeLower,
bool includeUpper
)
Parameters
- extractor
- Type: Tangosol.UtilIValueExtractor
The IValueExtractor to use to extract values from the entry to evaluate - lower
- Type: SystemIComparable
The lower bound of the range of values that evaluate to true - upper
- Type: SystemIComparable
The upper bound of the range of values that evaluate to true - includeLower
- Type: SystemBoolean
A flag indicating whether values matching the lower bound
of the range evaluate to true - includeUpper
- Type: SystemBoolean
A flag indicating whether values matching the upper bound
of the range evaluate to true
See Also