Modifier and Type | Method and Description |
---|---|
static Oper |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Oper[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Oper EQ
public static final Oper GE
public static final Oper GT
public static final Oper LE
public static final Oper LT
public static final Oper NEQ
public static Oper 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 static Oper[] values()
for (Oper c : Oper.values()) System.out.println(c);