Class BinaryOperator
- java.lang.Object
-
- com.thoughtworks.qdox.model.expression.BinaryOperator
-
- All Implemented Interfaces:
AnnotationValue
,Expression
- Direct Known Subclasses:
Add
,And
,Divide
,Equals
,ExclusiveOr
,GreaterEquals
,GreaterThan
,LessEquals
,LessThan
,LogicalAnd
,LogicalOr
,Multiply
,NotEquals
,Or
,Remainder
,ShiftLeft
,ShiftRight
,Subtract
,UnsignedShiftRight
public abstract class BinaryOperator extends java.lang.Object implements AnnotationValue
-
-
Constructor Summary
Constructors Constructor Description BinaryOperator(AnnotationValue left, AnnotationValue right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnnotationValue
getLeft()
AnnotationValue
getRight()
-
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.model.expression.AnnotationValue
accept
-
Methods inherited from interface com.thoughtworks.qdox.model.expression.Expression
getParameterValue
-
-
-
-
Constructor Detail
-
BinaryOperator
public BinaryOperator(AnnotationValue left, AnnotationValue right)
-
-
Method Detail
-
getLeft
public AnnotationValue getLeft()
-
getRight
public AnnotationValue getRight()
-
-