枚举 Keywords
java.lang.Object
java.lang.Enum<Keywords>
cn.featherfly.common.db.dialect.Keywords
- 所有已实现的接口:
java.io.Serializable,java.lang.Comparable<Keywords>,java.lang.constant.Constable
public enum Keywords extends java.lang.Enum<Keywords>
Keywords
.-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>> -
枚举常量概要
枚举常量 枚举常量 说明 ADDThe add.AFTERThe after.ALLThe all.ALTERThe alter.ANDThe and.ASThe as.ASCThe asc.AVGThe avg.BETWEENThe between.BYThe by.CASCADEThe cascade.COLUMNThe column.COMMENTThe comment.CONSTRAINTThe constraint.CORSSThe corss.COUNTThe count.CREATEThe create.DATABASEThe database.DEFAULTThe default.DELETEThe delete.DESCThe desc.DISTINCTThe distinct.DROPThe drop.EXCEPTThe except.EXISTSThe exists.FROMThe from.FULLThe full.IFThe if.INThe in.INDEXThe index.INNERThe inner.INSERTThe insert.INTERSECTThe intersect.INTOThe into.ISThe is.JOINThe join.KEYThe key.LEFTThe left.LIKEThe like.MAXThe max.MINThe min.MODIFYThe modify.NOTThe not.NULLThe null.ONThe on.ORThe or.ORDERThe order.OUTERThe outer.PRIMARYThe primary.RIGHTThe right.SCHEMAThe schema.SELECTThe select.SETThe set.SUMThe sum.TABLEThe table.TRUNCATEThe truncate.UNIONThe union.UNIQUEThe unique.UPDATEThe update.VALUESThe values.VIEWThe view.WHEREThe where. -
方法概要
从类继承的方法 java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf从类继承的方法 java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
枚举常量详细资料
-
TABLE
The table. -
COLUMN
The column. -
VIEW
The view. -
INDEX
The index. -
SELECT
The select. -
FROM
The from. -
WHERE
The where. -
INSERT
The insert. -
INTO
The into. -
VALUES
The values. -
UPDATE
The update. -
SET
The set. -
DELETE
The delete. -
JOIN
The join. -
ON
The on. -
INNER
The inner. -
LEFT
The left. -
RIGHT
The right. -
OUTER
The outer. -
FULL
The full. -
CORSS
The corss. -
CREATE
The create. -
DROP
The drop. -
AFTER
The after. -
ADD
The add. -
MODIFY
The modify. -
TRUNCATE
The truncate. -
ORDER
The order. -
BY
The by. -
DESC
The desc. -
ASC
The asc. -
LIKE
The like. -
IN
The in. -
IS
The is. -
NULL
The null. -
NOT
The not. -
BETWEEN
The between. -
UNION
The union. -
INTERSECT
The intersect. -
EXCEPT
The except. -
AND
The and. -
OR
The or. -
ALL
The all. -
AS
The as. -
COUNT
The count. -
SUM
The sum. -
MAX
The max. -
MIN
The min. -
AVG
The avg. -
DISTINCT
The distinct. -
DATABASE
The database. -
ALTER
The alter. -
IF
The if. -
EXISTS
The exists. -
COMMENT
The comment. -
PRIMARY
The primary. -
KEY
The key. -
CONSTRAINT
The constraint. -
DEFAULT
The default. -
CASCADE
The cascade. -
SCHEMA
The schema. -
UNIQUE
The unique.
-
-
方法详细资料
-
values
按照声明该枚举类型的常量的顺序, 返回一个包含这些常量的数组。- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
java.lang.IllegalArgumentException- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException- 如果参数为空值
-