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
-
-
Field Summary
Fields Modifier and Type Field Description private AnnotationValueleftprivate AnnotationValueright
-
Constructor Summary
Constructors Constructor Description BinaryOperator(AnnotationValue left, AnnotationValue right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnnotationValuegetLeft()AnnotationValuegetRight()-
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
-
-
-
-
Field Detail
-
left
private AnnotationValue left
-
right
private AnnotationValue right
-
-
Constructor Detail
-
BinaryOperator
public BinaryOperator(AnnotationValue left, AnnotationValue right)
-
-
Method Detail
-
getLeft
public AnnotationValue getLeft()
-
getRight
public AnnotationValue getRight()
-
-