Click or drag to resize

BetweenFilter Constructor (IValueExtractor, 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)
Syntax
C#
public 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