Java Code Examples for org.springframework.expression.Operation#ADD

The following examples show how to use org.springframework.expression.Operation#ADD . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OperatorOverloaderTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Override
public Object operate(Operation operation, Object leftOperand, Object rightOperand) throws EvaluationException {
	if (operation==Operation.ADD) {
		return ((String)leftOperand)+((Boolean)rightOperand).toString();
	}
	else {
		return leftOperand;
	}
}
 
Example 2
Source File: OperatorOverloaderTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Override
public Object operate(Operation operation, Object leftOperand, Object rightOperand) throws EvaluationException {
	if (operation==Operation.ADD) {
		return ((String)leftOperand)+((Boolean)rightOperand).toString();
	}
	else {
		return leftOperand;
	}
}
 
Example 3
Source File: OperatorOverloaderTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Override
public Object operate(Operation operation, Object leftOperand, Object rightOperand) throws EvaluationException {
	if (operation==Operation.ADD) {
		return ((String)leftOperand)+((Boolean)rightOperand).toString();
	} else {
		return leftOperand;
	}
}