public static enum Mode.ViewExpressionNames extends java.lang.Enum<Mode.ViewExpressionNames>
| Enum Constant and Description |
|---|
AS_IS
Use both specified and generated names as is.
|
EXCEPTION
Throw exception for unspecified names.
|
MYSQL_STYLE
Use both specified and generated names as is, but replace too long
generated names with
Name_exp_###. |
| Modifier and Type | Method and Description |
|---|---|
static Mode.ViewExpressionNames |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mode.ViewExpressionNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mode.ViewExpressionNames AS_IS
public static final Mode.ViewExpressionNames EXCEPTION
public static final Mode.ViewExpressionNames MYSQL_STYLE
Name_exp_###.public static Mode.ViewExpressionNames[] values()
for (Mode.ViewExpressionNames c : Mode.ViewExpressionNames.values()) System.out.println(c);
public static Mode.ViewExpressionNames 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