public static enum AssignmentExpressionTree.Operator extends Enum<AssignmentExpressionTree.Operator>
| Enum Constant and Description |
|---|
EQUAL |
MINUS_EQUAL |
MODULO_EQUAL |
PLUS_EQUAL |
TIMES_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static AssignmentExpressionTree.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssignmentExpressionTree.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignmentExpressionTree.Operator EQUAL
public static final AssignmentExpressionTree.Operator PLUS_EQUAL
public static final AssignmentExpressionTree.Operator MINUS_EQUAL
public static final AssignmentExpressionTree.Operator TIMES_EQUAL
public static final AssignmentExpressionTree.Operator MODULO_EQUAL
public static AssignmentExpressionTree.Operator[] values()
for (AssignmentExpressionTree.Operator c : AssignmentExpressionTree.Operator.values()) System.out.println(c);
public static AssignmentExpressionTree.Operator 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 nullCopyright © 2009–2018 SonarSource. All rights reserved.