Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Construct a BetweenFilter for testing "Between" condition.

Namespace: Tangosol.Util.Filter
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public BetweenFilter(
	IValueExtractor extractor,
	IComparable lower,
	IComparable upper,
	bool includeLower,
	bool includeUpper
)

Parameters

extractor
Type: Tangosol.Util..::..IValueExtractor
The IValueExtractor to use to extract values from the entry to evaluate
lower
Type: System..::..IComparable
The lower bound of the range of values that evaluate to true
upper
Type: System..::..IComparable
The upper bound of the range of values that evaluate to true
includeLower
Type: System..::..Boolean
A flag indicating whether values matching the lower bound of the range evaluate to true
includeUpper
Type: System..::..Boolean
A flag indicating whether values matching the upper bound of the range evaluate to true

See Also