Package org.apache.activemq.filter
Class ArithmeticExpression
- java.lang.Object
-
- org.apache.activemq.filter.BinaryExpression
-
- org.apache.activemq.filter.ArithmeticExpression
-
- All Implemented Interfaces:
Expression
public abstract class ArithmeticExpression extends BinaryExpression
An expression which performs an operation on two expression values
-
-
Constructor Summary
Constructors Constructor Description ArithmeticExpression(Expression left, Expression right)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected NumberasNumber(Object value)static ExpressioncreateDivide(Expression left, Expression right)static ExpressioncreateMinus(Expression left, Expression right)static ExpressioncreateMod(Expression left, Expression right)static ExpressioncreateMultiply(Expression left, Expression right)static ExpressioncreatePlus(Expression left, Expression right)protected Numberdivide(Number left, Number right)protected abstract Objectevaluate(Object lvalue, Object rvalue)Objectevaluate(MessageEvaluationContext message)protected Numberminus(Number left, Number right)protected Numbermod(Number left, Number right)protected Numbermultiply(Number left, Number right)protected Numberplus(Number left, Number right)-
Methods inherited from class org.apache.activemq.filter.BinaryExpression
equals, getExpressionSymbol, getLeft, getRight, hashCode, setLeft, setRight, toString
-
-
-
-
Field Detail
-
INTEGER
protected static final int INTEGER
- See Also:
- Constant Field Values
-
LONG
protected static final int LONG
- See Also:
- Constant Field Values
-
DOUBLE
protected static final int DOUBLE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ArithmeticExpression
public ArithmeticExpression(Expression left, Expression right)
- Parameters:
left-right-
-
-
Method Detail
-
createPlus
public static Expression createPlus(Expression left, Expression right)
-
createMinus
public static Expression createMinus(Expression left, Expression right)
-
createMultiply
public static Expression createMultiply(Expression left, Expression right)
-
createDivide
public static Expression createDivide(Expression left, Expression right)
-
createMod
public static Expression createMod(Expression left, Expression right)
-
evaluate
public Object evaluate(MessageEvaluationContext message) throws JMSException
- Returns:
- the value of this expression
- Throws:
JMSException
-
-