public static enum PropertyConfiguration.KeyCase extends java.lang.Enum<PropertyConfiguration.KeyCase>
Enum Constant and Description |
---|
LOWER
All lower case.
|
PRESERVED
Preserve original case.
|
UNSPECIFIED
Inherit the case settings, or
PRESERVED by default. |
UPPER
All upper case.
|
Modifier and Type | Method and Description |
---|---|
static PropertyConfiguration.KeyCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyConfiguration.KeyCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyConfiguration.KeyCase UPPER
public static final PropertyConfiguration.KeyCase LOWER
public static final PropertyConfiguration.KeyCase PRESERVED
public static final PropertyConfiguration.KeyCase UNSPECIFIED
PRESERVED
by default.public static PropertyConfiguration.KeyCase[] values()
for (PropertyConfiguration.KeyCase c : PropertyConfiguration.KeyCase.values()) System.out.println(c);
public static PropertyConfiguration.KeyCase 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