public enum DefaultQueryClause extends java.lang.Enum<DefaultQueryClause> implements ValueEnum
CustomQuerying for a full discussion.| Enum Constant and Description | 
|---|
| $DEFAULTANSIJOINCLAUSEThe  ansi join(s)to join tables to select from, if
 enabled. | 
| $DEFAULTORDERCLAUSEThe column names to sort by, for a fetch operation only | 
| $DEFAULTSELECTCLAUSEThe column names to select, for a fetch operation only | 
| $DEFAULTTABLECLAUSEThe table name(s) to select from or update | 
| $DEFAULTVALUESCLAUSEThe column names to update and the update values, for an update or add operation | 
| $DEFAULTWHERECLAUSEThe "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 $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