public enum Op extends Enum<Op>
| Enum Constant and Description |
|---|
eq
eq is : =
|
equal
equal is : =
|
ge
ge is : >=
|
greatEqual
great equal(same as ge) is : >=
|
greatThan
great than(same as gt) is : >
|
gt
gt is : >
|
in |
le
le is : <=
|
lessEqual
less equal(same as le) is : <=
|
lessThan
less than(same as lt) is : <
|
like |
lt
lt is : <
|
notEqual
not equal(same as nq) is : !=
|
notIn |
notLike |
nq
nq is : !=
|
| Modifier and Type | Method and Description |
|---|---|
String |
getOperator() |
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 eq
public static final Op gt
public static final Op lt
public static final Op nq
public static final Op ge
public static final Op le
public static final Op like
public static final Op notLike
public static final Op in
public static final Op notIn
public static final Op equal
public static final Op greatThan
public static final Op lessThan
public static final Op notEqual
public static final Op greatEqual
public static final Op lessEqual
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 nullpublic String getOperator()
Copyright © 2022. All rights reserved.