public enum FontSizingMode extends Enum<FontSizingMode>
| Enum Constant and Description |
|---|
AUTO_FIT |
USE_FONT_SIZE |
| Modifier and Type | Method and Description |
|---|---|
static FontSizingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontSizingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontSizingMode AUTO_FIT
public static final FontSizingMode USE_FONT_SIZE
public static FontSizingMode[] values()
for (FontSizingMode c : FontSizingMode.values()) System.out.println(c);
public static FontSizingMode 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 null