public enum SelectState extends Enum<SelectState>
| 枚举常量和说明 |
|---|
AND
and
|
BETWEEN
between
|
FROM
from
|
IN
in
|
LEFT
left join
|
NOTIN
not in
|
ON
on
|
OR
or
|
OTHER
other
|
RIGHT
right join
|
SELECT
select
|
WHERE
where
|
public static final SelectState SELECT
public static final SelectState FROM
public static final SelectState WHERE
public static final SelectState IN
public static final SelectState AND
public static final SelectState OR
public static final SelectState NOTIN
public static final SelectState BETWEEN
public static final SelectState LEFT
public static final SelectState RIGHT
public static final SelectState ON
public static final SelectState OTHER
public static SelectState[] values()
for (SelectState c : SelectState.values()) System.out.println(c);
public static SelectState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2019. All rights reserved.