Uses of Enum Class
com.github.javaparser.ast.expr.BinaryExpr.Operator
Packages that use BinaryExpr.Operator
-
Uses of BinaryExpr.Operator in com.github.javaparser.ast.expr
Fields in com.github.javaparser.ast.expr declared as BinaryExpr.OperatorMethods in com.github.javaparser.ast.expr that return BinaryExpr.OperatorModifier and TypeMethodDescriptionBinaryExpr.getOperator()
static BinaryExpr.Operator
Returns the enum constant of this class with the specified name.static BinaryExpr.Operator[]
BinaryExpr.Operator.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.github.javaparser.ast.expr that return types with arguments of type BinaryExpr.OperatorMethods in com.github.javaparser.ast.expr with parameters of type BinaryExpr.OperatorConstructors in com.github.javaparser.ast.expr with parameters of type BinaryExpr.OperatorModifierConstructorDescriptionBinaryExpr
(Expression left, Expression right, BinaryExpr.Operator operator) BinaryExpr
(TokenRange tokenRange, Expression left, Expression right, BinaryExpr.Operator operator) This constructor is used by the parser and is considered private.