Enum DefaultQueryClause
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<DefaultQueryClause>
,Constable
CustomQuerying
for a full discussion.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTheansi join(s)
to join tables to select from, if enabled.For a fetch operation when using theServer Summaries
feature, "group by" part of aggregated queryFor a fetch operation when using theServer Summaries
feature, "having" part of aggregated query (or outer "where" part if sub-select approach is used, seeOperationBinding.useHavingClause
for more details)The column names to sort by, for a fetch operation onlyThe column names to select, for a fetch operation onlyThe table name(s) to select from or updateThe column names to update and the update values, for an update or add operationThe "where" condition, which will be derived from supplied criteria or a primary key value, depending on the type of operation -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static DefaultQueryClause
Returns the enum constant of this type with the specified name.static DefaultQueryClause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
$DEFAULTSELECTCLAUSE
The column names to select, for a fetch operation onlyIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultSelectClause". -
$DEFAULTTABLECLAUSE
The table name(s) to select from or updateIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultTableClause". -
$DEFAULTANSIJOINCLAUSE
Theansi join(s)
to join tables to select from, if enabled.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultAnsiJoinClause". -
$DEFAULTWHERECLAUSE
The "where" condition, which will be derived from supplied criteria or a primary key value, depending on the type of operationIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultWhereClause". -
$DEFAULTGROUPCLAUSE
For a fetch operation when using theServer Summaries
feature, "group by" part of aggregated queryIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultGroupClause". -
$DEFAULTGROUPWHERECLAUSE
For a fetch operation when using theServer Summaries
feature, "having" part of aggregated query (or outer "where" part if sub-select approach is used, seeOperationBinding.useHavingClause
for more details)If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultGroupWhereClause". -
$DEFAULTVALUESCLAUSE
The column names to update and the update values, for an update or add operationIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultValuesClause". -
$DEFAULTORDERCLAUSE
The column names to sort by, for a fetch operation onlyIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultOrderClause".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-