public static enum AssignExpr.Operator extends Enum<AssignExpr.Operator>
Enum Constant and Description |
---|
and |
assign |
lShift |
minus |
or |
plus |
rem |
rSignedShift |
rUnsignedShift |
slash |
star |
xor |
Modifier and Type | Method and Description |
---|---|
static AssignExpr.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssignExpr.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignExpr.Operator assign
public static final AssignExpr.Operator plus
public static final AssignExpr.Operator minus
public static final AssignExpr.Operator star
public static final AssignExpr.Operator slash
public static final AssignExpr.Operator and
public static final AssignExpr.Operator or
public static final AssignExpr.Operator xor
public static final AssignExpr.Operator rem
public static final AssignExpr.Operator lShift
public static final AssignExpr.Operator rSignedShift
public static final AssignExpr.Operator rUnsignedShift
public static AssignExpr.Operator[] values()
for (AssignExpr.Operator c : AssignExpr.Operator.values()) System.out.println(c);
public static AssignExpr.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 null