public enum Op extends Enum<Op>
Enum Constant and Description |
---|
AND |
DIV |
EQ |
EXISTS |
GE |
GT |
IN |
IS |
LE |
LT |
MINUS |
MOD |
MUL |
NE |
NEG |
NOT |
NOT_EXISTS |
NOT_IN |
OR |
PLUS |
Modifier and Type | Method and Description |
---|---|
static Op |
valueOf(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.
|
public static final Op PLUS
public static final Op MINUS
public static final Op MUL
public static final Op DIV
public static final Op MOD
public static final Op NEG
public static final Op IN
public static final Op NOT_IN
public static final Op EQ
public static final Op GT
public static final Op LT
public static final Op GE
public static final Op LE
public static final Op NE
public static final Op NOT
public static final Op AND
public static final Op OR
public static final Op IS
public static final Op EXISTS
public static final Op NOT_EXISTS
public static Op[] values()
for (Op c : Op.values()) System.out.println(c);
public static Op 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 © 2013–2016 jparsec. All rights reserved.