public static enum IdentifierRules.CaseFold extends Enum<IdentifierRules.CaseFold>
决定如何规范化标识符的大小写
| Enum Constant and Description |
|---|
LOWER
转小写
|
NONE
不转换(保留原样)
|
UPPER
转大写
|
| Modifier and Type | Method and Description |
|---|---|
static IdentifierRules.CaseFold |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentifierRules.CaseFold[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentifierRules.CaseFold NONE
例如:Couchbase unquoted, 所有 quoted identifiers
public static final IdentifierRules.CaseFold UPPER
例如:Oracle unquoted, DB2 unquoted, Snowflake unquoted
public static final IdentifierRules.CaseFold LOWER
例如:PostgreSQL unquoted, Redshift unquoted, Greenplum unquoted
public static IdentifierRules.CaseFold[] values()
for (IdentifierRules.CaseFold c : IdentifierRules.CaseFold.values()) System.out.println(c);
public static IdentifierRules.CaseFold valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null