Package de.xima.fc.interfaces.condition
Interface ISingleConditionData<LHS,RHS>
-
- Type Parameters:
LHS- Type of the left hand side operand.RHS- Type of the right hand side operand.
- All Known Implementing Classes:
SingleConditionCheck.FormValueConditionData
public interface ISingleConditionData<LHS,RHS>Interface for POJOs with the parameters forSingleConditionEvaluator.test(ISingleConditionData).- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LHSgetLeftHandSide()EMatchConditiongetOperator()RHSgetRightHandSide()
-
-
-
Method Detail
-
getLeftHandSide
LHS getLeftHandSide()
- Returns:
- Value to check.
-
getOperator
EMatchCondition getOperator()
- Returns:
- Operator to apply on the value to check.
-
getRightHandSide
RHS getRightHandSide()
- Returns:
- Value against which to compare the
getLeftHandSide().
-
-