public static enum FontStyle.Transform extends java.lang.Enum<FontStyle.Transform>
Enum Constant and Description |
---|
capitalize
Capitalize transform.
|
lowercase
Lowercase transform.
|
uppercase
Uppercase transform.
|
Modifier and Type | Method and Description |
---|---|
static FontStyle.Transform |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontStyle.Transform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontStyle.Transform capitalize
public static final FontStyle.Transform uppercase
public static final FontStyle.Transform lowercase
public static FontStyle.Transform[] values()
for (FontStyle.Transform c : FontStyle.Transform.values()) System.out.println(c);
public static FontStyle.Transform 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