Class AbstractBinaryOperator
- java.lang.Object
-
- net.timewalker.ffmq4.common.message.selector.expression.SelectorNode
-
- net.timewalker.ffmq4.common.message.selector.expression.operator.AbstractBinaryOperator
-
- Direct Known Subclasses:
AbstractArithmeticBinaryOperator,AbstractComparisonOperator,AbstractConditionalBinaryOperator,InOperator,LikeOperator
public abstract class AbstractBinaryOperator extends SelectorNode
Abstract
-
-
Field Summary
Fields Modifier and Type Field Description protected SelectorNodeleftOperandprotected SelectorNoderightOperand
-
Constructor Summary
Constructors Constructor Description AbstractBinaryOperator(SelectorNode leftOperand, SelectorNode rightOperand)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SelectorNodeleftOperand()SelectorNoderightOperand()-
Methods inherited from class net.timewalker.ffmq4.common.message.selector.expression.SelectorNode
evaluate, evaluateBoolean, evaluateNumeric, evaluateString, getNodeType, negate, parenthesize
-
-
-
-
Field Detail
-
leftOperand
protected SelectorNode leftOperand
-
rightOperand
protected SelectorNode rightOperand
-
-
Constructor Detail
-
AbstractBinaryOperator
public AbstractBinaryOperator(SelectorNode leftOperand, SelectorNode rightOperand)
Constructor
-
-
Method Detail
-
leftOperand
public final SelectorNode leftOperand()
-
rightOperand
public final SelectorNode rightOperand()
-
-