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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description LHSgetLeftHandSide()EMatchConditiongetOperator()RHSgetRightHandSide()
 
- 
- 
- 
Method Detail- 
getLeftHandSideLHS getLeftHandSide() - Returns:
- Value to check.
 
 - 
getOperatorEMatchCondition getOperator() - Returns:
- Operator to apply on the value to check.
 
 - 
getRightHandSideRHS getRightHandSide() - Returns:
- Value against which to compare the getLeftHandSide().
 
 
- 
 
-