Click or drag to resize

BetweenExpression Constructor (Boolean, Boolean, Boolean)

Ctor - for use to create an expression tree, without child expression.

Use add methods to add child expressions to acts upon.

Namespace:  com.espertech.esper.common.client.soda
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public BetweenExpression(
	bool lowEndpointIncluded,
	bool highEndpointIncluded,
	bool notBetween
)

Parameters

lowEndpointIncluded
Type: SystemBoolean
true if the low endpoint is included, false if not
highEndpointIncluded
Type: SystemBoolean
true if the high endpoint is included, false if not
notBetween
Type: SystemBoolean
true for not-between, false for between
See Also