public static enum StringBasedErpType.CharCasing extends Enum<StringBasedErpType.CharCasing>
StringBasedErpType
.Enum Constant and Description |
---|
DO_NOTHING
Does not change the casing of the given String.
|
LOWER_CASE
Changes all letters of the given String to lower-case, depending on the given
Locale . |
UPPER_CASE
Changes all letters of the given String to upper-case, depending on the given
Locale . |
Modifier and Type | Method and Description |
---|---|
static StringBasedErpType.CharCasing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringBasedErpType.CharCasing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringBasedErpType.CharCasing DO_NOTHING
public static final StringBasedErpType.CharCasing UPPER_CASE
Locale
.public static final StringBasedErpType.CharCasing LOWER_CASE
Locale
.public static StringBasedErpType.CharCasing[] values()
for (StringBasedErpType.CharCasing c : StringBasedErpType.CharCasing.values()) System.out.println(c);
public static StringBasedErpType.CharCasing 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 © 2018 SAP SE. All rights reserved.