Package | Description |
---|---|
com.github.javaparser | |
com.github.javaparser.ast.expr |
Modifier and Type | Method and Description |
---|---|
AssignExpr.Operator |
GeneratedJavaParser.AssignmentOperator() |
Modifier and Type | Field and Description |
---|---|
private AssignExpr.Operator |
AssignExpr.operator |
Modifier and Type | Method and Description |
---|---|
AssignExpr.Operator |
AssignExpr.getOperator() |
static AssignExpr.Operator |
AssignExpr.Operator.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssignExpr.Operator[] |
AssignExpr.Operator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
AssignExpr |
AssignExpr.setOperator(AssignExpr.Operator operator) |
Constructor and Description |
---|
AssignExpr(Expression target,
Expression value,
AssignExpr.Operator operator) |
AssignExpr(TokenRange tokenRange,
Expression target,
Expression value,
AssignExpr.Operator operator)
This constructor is used by the parser and is considered private.
|