public static enum FontProfile.FontSize extends java.lang.Enum<FontProfile.FontSize>
Enum Constant and Description |
---|
LARGE
Large.
|
LENGTH
Manual fixed size length.
|
MEDIUM
Medium.
|
SMALL
Small.
|
X_LARGE
Extra large.
|
X_SMALL
Extra small.
|
XX_LARGE
Extra extra large.
|
XX_SMALL
Extra extra small.
|
Modifier and Type | Method and Description |
---|---|
static FontProfile.FontSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontProfile.FontSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontProfile.FontSize XX_SMALL
public static final FontProfile.FontSize X_SMALL
public static final FontProfile.FontSize SMALL
public static final FontProfile.FontSize MEDIUM
public static final FontProfile.FontSize LARGE
public static final FontProfile.FontSize X_LARGE
public static final FontProfile.FontSize XX_LARGE
public static final FontProfile.FontSize LENGTH
public static FontProfile.FontSize[] values()
for (FontProfile.FontSize c : FontProfile.FontSize.values()) System.out.println(c);
public static FontProfile.FontSize 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