public enum CharacterCasing extends Enum<CharacterCasing>
Enum Constant and Description |
---|
LOWER
Converts all characters to lowercase.
|
NORMAL
The case of characters is left unchanged.
|
UPPER
Converts all characters to uppercase.
|
Modifier and Type | Method and Description |
---|---|
static CharacterCasing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CharacterCasing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterCasing LOWER
public static final CharacterCasing NORMAL
public static final CharacterCasing UPPER
public static CharacterCasing[] values()
for (CharacterCasing c : CharacterCasing.values()) System.out.println(c);
public static CharacterCasing 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 2009-2012 Micro Focus. All Rights Reserved.