public enum SqlKeyword extends Enum<SqlKeyword>
| Enum Constant and Description |
|---|
ASC |
BETWEEN |
DESC |
EQ |
GE |
GT |
IN |
IS_NOT_NULL |
IS_NULL |
LE |
LIKE |
LT |
NE |
NOT_BETWEEN |
NOT_IN |
NOT_LIKE |
| Modifier and Type | Method and Description |
|---|---|
String |
getKeyword() |
static SqlKeyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlKeyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlKeyword IN
public static final SqlKeyword NOT_IN
public static final SqlKeyword LIKE
public static final SqlKeyword NOT_LIKE
public static final SqlKeyword EQ
public static final SqlKeyword NE
public static final SqlKeyword GT
public static final SqlKeyword GE
public static final SqlKeyword LT
public static final SqlKeyword LE
public static final SqlKeyword IS_NULL
public static final SqlKeyword IS_NOT_NULL
public static final SqlKeyword BETWEEN
public static final SqlKeyword NOT_BETWEEN
public static final SqlKeyword ASC
public static final SqlKeyword DESC
public static SqlKeyword[] values()
for (SqlKeyword c : SqlKeyword.values()) System.out.println(c);
public static SqlKeyword 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 getKeyword()
Copyright © 2021. All rights reserved.