public static enum Mode.ExpressionNames extends java.lang.Enum<Mode.ExpressionNames>
| Enum Constant and Description |
|---|
C_NUMBER
Use ordinal number of a column with C prefix.
|
EMPTY
Generate empty name.
|
NUMBER
Use ordinal number of a column.
|
OPTIMIZED_SQL
Use optimized SQL representation of expression.
|
ORIGINAL_SQL
Use original SQL representation of expression.
|
POSTGRESQL_STYLE
Use function name for functions and ?column? for other expressions
|
| Modifier and Type | Method and Description |
|---|---|
static Mode.ExpressionNames |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mode.ExpressionNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mode.ExpressionNames OPTIMIZED_SQL
public static final Mode.ExpressionNames ORIGINAL_SQL
public static final Mode.ExpressionNames EMPTY
public static final Mode.ExpressionNames NUMBER
public static final Mode.ExpressionNames C_NUMBER
public static final Mode.ExpressionNames POSTGRESQL_STYLE
public static Mode.ExpressionNames[] values()
for (Mode.ExpressionNames c : Mode.ExpressionNames.values()) System.out.println(c);
public static Mode.ExpressionNames 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