public static enum Mode.ViewExpressionNames extends Enum<Mode.ViewExpressionNames>
| 枚举常量和说明 |
|---|
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_###. |
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(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.