public static enum FPOperation.Command extends Enum<FPOperation.Command>
| Enum Constant and Description |
|---|
addToDim |
and |
div |
equal |
great |
greatEqual |
in |
less |
lessEqual |
minus |
mul |
notequal |
notin |
or |
plus |
xor |
| Modifier and Type | Field and Description |
|---|---|
int |
prior |
| Modifier and Type | Method and Description |
|---|---|
static FPOperation.Command |
fromString(String string) |
static boolean |
isOperation(String string) |
boolean |
isPriorThen(FPOperation.Command oper) |
static FPOperation.Command |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FPOperation.Command[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FPOperation.Command mul
public static final FPOperation.Command div
public static final FPOperation.Command plus
public static final FPOperation.Command minus
public static final FPOperation.Command equal
public static final FPOperation.Command notequal
public static final FPOperation.Command great
public static final FPOperation.Command greatEqual
public static final FPOperation.Command less
public static final FPOperation.Command lessEqual
public static final FPOperation.Command in
public static final FPOperation.Command notin
public static final FPOperation.Command and
public static final FPOperation.Command or
public static final FPOperation.Command xor
public static final FPOperation.Command addToDim
public static FPOperation.Command[] values()
for (FPOperation.Command c : FPOperation.Command.values()) System.out.println(c);
public static FPOperation.Command 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 nullpublic boolean isPriorThen(FPOperation.Command oper)
public static FPOperation.Command fromString(String string)
public static boolean isOperation(String string)
Copyright © 2018. All rights reserved.