| Enum Constant and Description |
|---|
BOLD |
ITALICS |
NONE |
RANDOM |
RESET |
STRIKETHROUGH |
UNDERLINED |
UPSIDE_DOWN |
| Modifier and Type | Field and Description |
|---|---|
static int |
NO_COLOR |
static int |
RESET_COLOR |
| Modifier and Type | Method and 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 final int NO_COLOR
public static final int RESET_COLOR
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