public static enum OPTYPE.Number extends Enum<OPTYPE.Number>
| Modifier and Type | Method and Description |
|---|---|
static OPTYPE.Number |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OPTYPE.Number[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OPTYPE.Number PLUS
public static final OPTYPE.Number MINUS
public static final OPTYPE.Number MULT
public static final OPTYPE.Number DIV
public static final OPTYPE.Number MOD
public static final OPTYPE.Number POW
public static OPTYPE.Number[] values()
for (OPTYPE.Number c : OPTYPE.Number.values()) System.out.println(c);
public static OPTYPE.Number 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 © 2016. All rights reserved.