Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
IFilter which compares the result of a member invocation with a value for "Between" condition.

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

Syntax

C#
public class BetweenFilter : AndFilter

Remarks

We use the standard ISO/IEC 9075:1992 semantic, according to which "X between Y and Z" is equivalent to "X >= Y && X <= Z". In a case when either result of a member invocation or a value to compare are equal to null, the Evaluate test yields false. This approach is equivalent to the way the null values are handled by SQL.

Inheritance Hierarchy

System..::..Object
  Tangosol.Util.Filter..::..ArrayFilter
    Tangosol.Util.Filter..::..AllFilter
      Tangosol.Util.Filter..::..AndFilter
        Tangosol.Util.Filter..::..BetweenFilter

See Also