com.azalient.api.file.xls
Enum FontF.FontFace
java.lang.Object
java.lang.Enum<FontF.FontFace>
com.azalient.api.file.xls.FontF.FontFace
- All Implemented Interfaces:
- Serializable, Comparable<FontF.FontFace>
- Enclosing interface:
- FontF
public static enum FontF.FontFace
- extends Enum<FontF.FontFace>
|
Method Summary |
static FontF.FontFace |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FontF.FontFace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
ARIAL
public static final FontF.FontFace ARIAL
COURIER
public static final FontF.FontFace COURIER
TAHOMA
public static final FontF.FontFace TAHOMA
TIMES
public static final FontF.FontFace TIMES
values
public static FontF.FontFace[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (FontF.FontFace c : FontF.FontFace.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static FontF.FontFace valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null