BetweenOperator Constructors
The operator that determines whether the value lies in the specified value range.Name | Parameters | Description |
---|---|---|
BetweenOperator() | none | Initializes a new BetweenOperator instance with the default settings. |
BetweenOperator(CriteriaOperator, CriteriaOperator, CriteriaOperator) | testExpression, beginExpression, endExpression | Initializes a new BetweenOperator instance with the specified operators that define a property to test, and a value range. |
BetweenOperator(String, CriteriaOperator, CriteriaOperator) | testPropertyName, beginExpression, endExpression | Initializes a new BetweenOperator instance with the specified tested property name, and operators that define a value range. |
BetweenOperator(String, Object, Object) | testPropertyName, beginValue, endValue | Initializes a new BetweenOperator instance with the specified tested property name, and objects that define a value range. |
See Also