コード例 #1
0
 @Override
 public SOperationBuilder setRightOperand(final SExpression rightOperand) {
   operation.setRightOperand(rightOperand);
   return this;
 }
コード例 #2
0
 @Override
 public SOperationBuilder setType(final SOperatorType operatorType) {
   operation.setType(operatorType);
   return this;
 }
コード例 #3
0
 @Override
 public SOperationBuilder setOperator(final String operator) {
   operation.setOperator(operator);
   return this;
 }
コード例 #4
0
 @Override
 public SOperationBuilder setLeftOperand(final SLeftOperand leftOperand) {
   operation.setLeftOperand(leftOperand);
   return this;
 }