public enum FontProp extends java.lang.Enum<FontProp>
| Enum Constant | Description |
|---|---|
BOLD |
|
ITALICS |
|
NONE |
|
RANDOM |
|
RESET |
|
STRIKETHROUGH |
|
UNDERLINED |
|
UPSIDE_DOWN |
| Modifier and Type | Method | Description |
|---|---|---|
static FontProp |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static FontProp[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontProp NONE
public static final FontProp RESET
public static final FontProp UNDERLINED
public static final FontProp STRIKETHROUGH
public static final FontProp ITALICS
public static final FontProp UPSIDE_DOWN
public static final FontProp BOLD
public static final FontProp RANDOM
public static FontProp[] values()
for (FontProp c : FontProp.values()) System.out.println(c);
public static FontProp 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