public enum SqlKeyword extends Enum<SqlKeyword>
| 枚举常量和说明 |
|---|
BETWEEN |
EQ |
GE |
GT |
IN |
IS_NOT_NULL |
IS_NULL |
LE |
LIKE |
LT |
NE |
NOT |
NOT_BETWEEN |
NOT_IN |
NOT_LIKE |
public static final SqlKeyword NOT
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 SqlKeyword[] values()
for (SqlKeyword c : SqlKeyword.values()) System.out.println(c);
public static SqlKeyword valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024. All rights reserved.