BetweenFilter Constructor (String, IComparable, IComparable, Boolean, Boolean) |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct a BetweenFilter for testing "Between" condition.
Namespace:
Tangosol.Util.Filter
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic BetweenFilter(
string method,
IComparable lower,
IComparable upper,
bool includeLower,
bool includeUpper
)
Parameters
- method
- Type: SystemString
The name of the member to invoke via reflection. - 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