private static enum BinaryOpType.Op extends java.lang.Enum<BinaryOpType.Op>
| Modifier and Type | Method and Description |
|---|---|
static BinaryOpType.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BinaryOpType.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryOpType.Op MATH
public static final BinaryOpType.Op ASSIGN
public static final BinaryOpType.Op REL
public static BinaryOpType.Op[] values()
for (BinaryOpType.Op c : BinaryOpType.Op.values()) System.out.println(c);
public static BinaryOpType.Op valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null