public static enum TextTransform.Type extends java.lang.Enum<TextTransform.Type>
Enum Constant and Description |
---|
capitalize
Each word in a text starts with a capital letter
|
lowercase
Defines no capital letters, only lower case letters
|
none
Defines normal text, with lower case letters and capital letters
|
uppercase
Defines only capital letters
|
Modifier and Type | Method and Description |
---|---|
static TextTransform.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextTransform.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextTransform.Type none
public static final TextTransform.Type capitalize
public static final TextTransform.Type uppercase
public static final TextTransform.Type lowercase
public static TextTransform.Type[] values()
for (TextTransform.Type c : TextTransform.Type.values()) System.out.println(c);
public static TextTransform.Type 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