| Enum Constant and Description |
|---|
ALL_CAP |
FIXED_WIDTH |
FORCE_BOLD |
ITALIC |
SCRIPT |
SERIF |
SMALL_CAP |
STANDARD |
SYMBOLIC |
| Modifier and Type | Method and Description |
|---|---|
static FontFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontFlags FIXED_WIDTH
public static final FontFlags SERIF
public static final FontFlags SYMBOLIC
public static final FontFlags SCRIPT
public static final FontFlags STANDARD
public static final FontFlags ITALIC
public static final FontFlags ALL_CAP
public static final FontFlags SMALL_CAP
public static final FontFlags FORCE_BOLD
public static FontFlags[] values()
for (FontFlags c : FontFlags.values()) System.out.println(c);
public static FontFlags 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