public enum StoredIdentifierCase extends Enum<StoredIdentifierCase>
| Enum Constant and Description |
|---|
LOWER_CASE
The database stores unquoted identifiers as lower case
|
MIXED_CASE
The database stores unquoted identifiers as case sensitive
|
UPPER_CASE
The database stores unquoted identifiers as upper case
|
| Modifier and Type | Method and Description |
|---|---|
static StoredIdentifierCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredIdentifierCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredIdentifierCase LOWER_CASE
public static final StoredIdentifierCase UPPER_CASE
public static final StoredIdentifierCase MIXED_CASE
public static StoredIdentifierCase[] values()
for (StoredIdentifierCase c : StoredIdentifierCase.values()) System.out.println(c);
public static StoredIdentifierCase 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 nullCopyright © 2016. All Rights Reserved.