| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
name |
| Modifier and Type | Method and Description |
|---|---|
abstract int |
eval(int x,
int y) |
java.lang.String |
toString() |
static Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
private final java.lang.String name
public static Op[] values()
for (Op c : Op.values()) System.out.println(c);
public static 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 nullpublic abstract int eval(int x, int y)