|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ESqlClause>
gudusoft.gsqlparser.ESqlClause
public enum ESqlClause
Enum for various SQL clause such as where clause, having clause and etc.
Enum Constant Summary | |
---|---|
compute
|
|
cte
|
|
expandOn
teradata expand on clause |
|
forUpdate
|
|
groupby
|
|
having
|
|
hierarchical
|
|
insertValues
values clause of insert |
|
join
|
|
joinCondition
|
|
limit
|
|
lockingClause
postgresql for update of, |
|
orderby
|
|
output
output clause in update statement |
|
qualify
teradata qualify clause |
|
resultColumn
can be select list, insert into columns |
|
returning
returning clause in update statement |
|
sample
SQL Server sample clause |
|
selectInto
into clause in select |
|
selectValue
value clause in select |
|
set
set clause in update |
|
teradataWith
|
|
top
sql server top clause |
|
unknown
|
|
viewAlias
view alias in create view statement |
|
where
|
Method Summary | |
---|---|
static ESqlClause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ESqlClause[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ESqlClause unknown
public static final ESqlClause resultColumn
public static final ESqlClause where
public static final ESqlClause having
public static final ESqlClause groupby
public static final ESqlClause orderby
public static final ESqlClause joinCondition
public static final ESqlClause join
public static final ESqlClause hierarchical
public static final ESqlClause compute
public static final ESqlClause top
public static final ESqlClause set
public static final ESqlClause insertValues
public static final ESqlClause selectInto
public static final ESqlClause qualify
public static final ESqlClause sample
public static final ESqlClause teradataWith
public static final ESqlClause expandOn
public static final ESqlClause limit
public static final ESqlClause selectValue
public static final ESqlClause viewAlias
public static final ESqlClause cte
public static final ESqlClause forUpdate
public static final ESqlClause output
public static final ESqlClause returning
public static final ESqlClause lockingClause
Method Detail |
---|
public static final ESqlClause[] values()
for(ESqlClause c : ESqlClause.values()) System.out.println(c);
public static ESqlClause valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |