public static enum FontLibrary.FontSize extends java.lang.Enum<FontLibrary.FontSize>
Font.
Choices are:
| Modifier and Type | Method and Description |
|---|---|
static FontLibrary.FontSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontLibrary.FontSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontLibrary.FontSize TINY
public static final FontLibrary.FontSize SMALLER
public static final FontLibrary.FontSize SMALL
public static final FontLibrary.FontSize MEDIUM
public static final FontLibrary.FontSize BIG
public static FontLibrary.FontSize[] values()
for (FontLibrary.FontSize c : FontLibrary.FontSize.values()) System.out.println(c);
public static FontLibrary.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