public enum DefaultQueryClause extends java.lang.Enum<DefaultQueryClause> implements ValueEnum
CustomQuerying for a full discussion.| Enum Constant and Description |
|---|
$DEFAULTANSIJOINCLAUSE The ansi join(s) to join tables to select from, if enabled. |
$DEFAULTGROUPCLAUSE For a fetch operation when using the Server Summaries feature, "group by" part of aggregated query |
$DEFAULTGROUPWHERECLAUSE For a fetch operation when using the Server Summaries feature, "having" part of aggregated query (or outer "where" part if sub-select approach is used, see OperationBinding.useHavingClause for more details) |
$DEFAULTORDERCLAUSE The column names to sort by, for a fetch operation only |
$DEFAULTSELECTCLAUSE The column names to select, for a fetch operation only |
$DEFAULTTABLECLAUSE The table name(s) to select from or update |
$DEFAULTVALUESCLAUSE The column names to update and the update values, for an update or add operation |
$DEFAULTWHERECLAUSE The "where" condition, which will be derived from supplied criteria or a primary key value, depending on the type of operation |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static DefaultQueryClause | valueOf(java.lang.String name) 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. |
public static final DefaultQueryClause $DEFAULTSELECTCLAUSE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultSelectClause".
public static final DefaultQueryClause $DEFAULTTABLECLAUSE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultTableClause".
public static final DefaultQueryClause $DEFAULTANSIJOINCLAUSE
ansi 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".
public static final DefaultQueryClause $DEFAULTWHERECLAUSE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultWhereClause".
public static final DefaultQueryClause $DEFAULTGROUPCLAUSE
Server Summaries feature, "group by" part of aggregated query If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultGroupClause".
public static final DefaultQueryClause $DEFAULTGROUPWHERECLAUSE
Server Summaries feature, "having" part of aggregated query (or outer "where" part if sub-select approach is used, see OperationBinding.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".
public static final DefaultQueryClause $DEFAULTVALUESCLAUSE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultValuesClause".
public static final DefaultQueryClause $DEFAULTORDERCLAUSE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "$defaultOrderClause".
public static DefaultQueryClause[] values()
for (DefaultQueryClause c : DefaultQueryClause.values()) System.out.println(c);
public static DefaultQueryClause 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 namejava.lang.NullPointerException - if the argument is null