public enum AssignOperator extends Enum<AssignOperator>
| Enum Constant and Description |
|---|
AND_ASSIGNMENT |
ASSIGN |
DIVIDE_ASSIGNMENT |
LEFT_SHIFT_ASSIGNMENT |
MINUS_ASSIGNMENT |
MULTIPLY_ASSIGNMENT |
OR_ASSIGNMENT |
PLUS_ASSIGNMENT |
REMAINDER_ASSIGNMENT |
RIGHT_SHIFT_ASSIGNMENT |
UNSIGNED_RIGHT_SHIFT_ASSIGNMENT |
XOR_ASSIGNMENT |
| Modifier and Type | Method and Description |
|---|---|
BinaryOperator |
getBinaryOperator() |
com.sun.source.tree.Tree.Kind |
getJava() |
int |
getJavaScript() |
static AssignOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssignOperator |
valueOf(com.sun.source.tree.Tree.Kind javaOperator) |
static AssignOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignOperator ASSIGN
public static final AssignOperator MULTIPLY_ASSIGNMENT
public static final AssignOperator DIVIDE_ASSIGNMENT
public static final AssignOperator REMAINDER_ASSIGNMENT
public static final AssignOperator PLUS_ASSIGNMENT
public static final AssignOperator MINUS_ASSIGNMENT
public static final AssignOperator LEFT_SHIFT_ASSIGNMENT
public static final AssignOperator RIGHT_SHIFT_ASSIGNMENT
public static final AssignOperator UNSIGNED_RIGHT_SHIFT_ASSIGNMENT
public static final AssignOperator AND_ASSIGNMENT
public static final AssignOperator XOR_ASSIGNMENT
public static final AssignOperator OR_ASSIGNMENT
public static AssignOperator[] values()
for (AssignOperator c : AssignOperator.values()) System.out.println(c);
public static AssignOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic BinaryOperator getBinaryOperator()
public com.sun.source.tree.Tree.Kind getJava()
public int getJavaScript()
public static AssignOperator valueOf(com.sun.source.tree.Tree.Kind javaOperator)
Copyright © 2015. All Rights Reserved.