Class BinaryOperatorDef
- java.lang.Object
-
- com.thoughtworks.qdox.parser.expression.ExpressionDef
-
- com.thoughtworks.qdox.parser.expression.BinaryOperatorDef
-
- All Implemented Interfaces:
ElemValueDef
- Direct Known Subclasses:
AddDef,AndDef,DivideDef,EqualsDef,ExclusiveOrDef,GreaterEqualsDef,GreaterThanDef,LessEqualsDef,LessThanDef,LogicalAndDef,LogicalOrDef,MultiplyDef,NotEqualsDef,OrDef,RemainderDef,ShiftLeftDef,ShiftRightDef,SubtractDef,UnsignedShiftRightDef
public abstract class BinaryOperatorDef extends ExpressionDef
-
-
Constructor Summary
Constructors Constructor Description BinaryOperatorDef(ElemValueDef lhs, ElemValueDef rhs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElemValueDefgetLeft()ElemValueDefgetRight()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.thoughtworks.qdox.parser.expression.ElemValueDef
transform
-
-
-
-
Constructor Detail
-
BinaryOperatorDef
public BinaryOperatorDef(ElemValueDef lhs, ElemValueDef rhs)
-
-
Method Detail
-
getLeft
public ElemValueDef getLeft()
- Returns:
- the lhs
-
getRight
public ElemValueDef getRight()
- Returns:
- the rhs
-
-