public enum CharacterCasing extends Enum<CharacterCasing>
| Enum Constant and Description |
|---|
LOWER
将所有字符转换为小写。
|
NORMAL
不更改字符的大小写状态。
|
UPPER
将所有字符转换为大写。
|
| 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.