| Enum Constant and Description |
|---|
Arial |
Arial_Unicode_MS |
Calibri |
Times_New_Roman |
Verdana |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCharset() |
java.lang.String |
getFamily() |
java.lang.String |
getScheme() |
java.lang.String |
str() |
static FontName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontName Calibri
public static final FontName Times_New_Roman
public static final FontName Arial
public static final FontName Arial_Unicode_MS
public static final FontName Verdana
public static FontName[] values()
for (FontName c : FontName.values()) System.out.println(c);
public static FontName 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 nullpublic java.lang.String str()
public java.lang.String getFamily()
public java.lang.String getCharset()
public java.lang.String getScheme()