Class FloatRangeCriterion
java.lang.Object
com.isomorphic.criteria.criterion.RangeCriterion
com.isomorphic.criteria.criterion.FloatRangeCriterion
- All Implemented Interfaces:
Criterion
Criterion for range of floats.
-
Constructor Summary
ConstructorsConstructorDescriptionFloatRangeCriterion
(String fieldName, OperatorBase operatorId, Float minValue, Float maxValue) Construct FloatRangeCriterion using parameters:FloatRangeCriterion
(String fieldName, String operatorId, Float minValue, Float maxValue) Construct FloatRangeCriterion using parameters: -
Method Summary
Methods inherited from class com.isomorphic.criteria.criterion.RangeCriterion
getMax, getMin, setMax, setMin
-
Constructor Details
-
FloatRangeCriterion
Construct FloatRangeCriterion using parameters:- Parameters:
fieldName
- - name of field to check.operatorId
- - operator determining rule used for checking.minValue
- - minValue for fieldValuemaxValue
- - maxValue for fieldValue
-
FloatRangeCriterion
public FloatRangeCriterion(String fieldName, OperatorBase operatorId, Float minValue, Float maxValue) Construct FloatRangeCriterion using parameters:- Parameters:
fieldName
- - name of field to check.operatorId
- - operator that determines checking logic. This is likely to be a member of theDefaultOperators
class, such as IContains or GreaterThan.minValue
- - minValue for fieldValuemaxValue
- - maxValue for fieldValue
-