public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
and |
avg |
between |
count |
distinct |
eq
eq is : =
|
ge
ge is : >=
|
groupBy |
gt
gt is : >
|
having |
in |
le
le is : <=
|
like |
lt
lt is : <
|
max |
min |
notBetween |
notIn |
notLike |
nq
nq is : !=
|
or |
orderBy |
sum |
| Modifier and Type | Method and Description |
|---|---|
String |
getOperator() |
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator eq
public static final Operator gt
public static final Operator lt
public static final Operator nq
public static final Operator ge
public static final Operator le
public static final Operator like
public static final Operator notLike
public static final Operator in
public static final Operator notIn
public static final Operator between
public static final Operator notBetween
public static final Operator groupBy
public static final Operator having
public static final Operator orderBy
public static final Operator distinct
public static final Operator max
public static final Operator min
public static final Operator sum
public static final Operator avg
public static final Operator count
public static final Operator or
public static final Operator and
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator 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 © 2025. All rights reserved.