public enum OpType extends Enum<OpType>
| Enum Constant and Description |
|---|
BETWEEN |
GROUP_BY |
HAVING |
IN |
L_PARENTHESES |
LIKE |
NOT_BETWEEN |
ONE |
OP_WITH_FIELD |
OP2 |
OP2_TO_DATE |
ORDER_BY2 |
ORDER_BY3 |
ORDER_BY4 |
R_PARENTHESES |
SET |
SET_ADD |
SET_ADD_FIELD |
SET_MULTIPLY |
SET_MULTIPLY_FIELD |
SET_WITH_FIELD |
| Modifier and Type | Method and Description |
|---|---|
static OpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpType OP2
public static final OpType LIKE
public static final OpType IN
public static final OpType BETWEEN
public static final OpType NOT_BETWEEN
public static final OpType OP2_TO_DATE
public static final OpType ONE
public static final OpType OP_WITH_FIELD
public static final OpType GROUP_BY
public static final OpType HAVING
public static final OpType ORDER_BY2
public static final OpType ORDER_BY3
public static final OpType ORDER_BY4
public static final OpType L_PARENTHESES
public static final OpType R_PARENTHESES
public static final OpType SET
public static final OpType SET_ADD
public static final OpType SET_MULTIPLY
public static final OpType SET_ADD_FIELD
public static final OpType SET_MULTIPLY_FIELD
public static final OpType SET_WITH_FIELD
public static OpType[] values()
for (OpType c : OpType.values()) System.out.println(c);
public static OpType 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 © 2025. All rights reserved.