Interface CtBinaryOperator<T>

Type Parameters:
T - Type of this expression
All Superinterfaces:
Cloneable, CtCodeElement, CtElement, CtExpression<T>, CtQueryable, CtTypedElement<T>, CtVisitable, FactoryAccessor, Serializable, SourcePositionHolder, TemplateParameter<T>
All Known Implementing Classes:
CtBinaryOperatorImpl

public interface CtBinaryOperator<T> extends CtExpression<T>
This interface defines a binary operator. Example:
     // 3+4 is the binary expression
     int x = 3 + 4;