Uses of Class
com.github.javaparser.ast.expr.BinaryExpr.Operator
-
Packages that use BinaryExpr.Operator Package Description com.github.javaparser.ast.expr com.github.javaparser.symbolsolver.javaparsermodel Implementation of model based on JavaParser. -
-
Uses of BinaryExpr.Operator in com.github.javaparser.ast.expr
Fields in com.github.javaparser.ast.expr declared as BinaryExpr.Operator Modifier and Type Field Description private BinaryExpr.OperatorBinaryExpr. operatorMethods in com.github.javaparser.ast.expr that return BinaryExpr.Operator Modifier and Type Method Description BinaryExpr.OperatorBinaryExpr. getOperator()static BinaryExpr.OperatorBinaryExpr.Operator. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BinaryExpr.Operator[]BinaryExpr.Operator. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.javaparser.ast.expr that return types with arguments of type BinaryExpr.Operator Modifier and Type Method Description java.util.Optional<BinaryExpr.Operator>AssignExpr.Operator. toBinaryOperator()Methods in com.github.javaparser.ast.expr with parameters of type BinaryExpr.Operator Modifier and Type Method Description BinaryExprBinaryExpr. setOperator(BinaryExpr.Operator operator)Constructors in com.github.javaparser.ast.expr with parameters of type BinaryExpr.Operator Constructor Description BinaryExpr(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. -
Uses of BinaryExpr.Operator in com.github.javaparser.symbolsolver.javaparsermodel
Methods in com.github.javaparser.symbolsolver.javaparsermodel with parameters of type BinaryExpr.Operator Modifier and Type Method Description protected ResolvedTypeJavaParserFacade. getBinaryTypeConcrete(Node left, Node right, boolean solveLambdas, BinaryExpr.Operator operator)
-