public enum QueryOpt extends Enum<QueryOpt>
Condition| Enum Constant and Description |
|---|
EQ
等于.
|
GT
大于.
|
GTE
大于等于.
|
IN
in查询.
|
ISNOTNULL
is not null
|
ISNULL
is null
|
LIKE
like查询.
|
LT
小于.
|
LTE
小于等于.
|
NOTEQ
不等于.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getSymbol() |
static QueryOpt |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryOpt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOpt EQ
public static final QueryOpt NOTEQ
public static final QueryOpt GT
public static final QueryOpt GTE
public static final QueryOpt LT
public static final QueryOpt LTE
public static final QueryOpt IN
public static final QueryOpt LIKE
public static final QueryOpt ISNULL
public static final QueryOpt ISNOTNULL
private String symbol
public static QueryOpt[] values()
for (QueryOpt c : QueryOpt.values()) System.out.println(c);
public static QueryOpt 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 getSymbol()
Copyright © 2015. All rights reserved.