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 for
SingleConditionEvaluator.test(ISingleConditionData)
.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
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()
.
-