public enum ESCFontTypeEnum extends java.lang.Enum<ESCFontTypeEnum>
Enum Constant and Description |
---|
FONT_A_12x24
Font-A: 12*24
|
FONT_B_9x24
Font-B: 9*24
|
FONT_C_9x17
Font-C: 9*17
|
FONT_D_8x16
Font-D: 8*16
|
Modifier and Type | Method and Description |
---|---|
static ESCFontTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ESCFontTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESCFontTypeEnum FONT_A_12x24
public static final ESCFontTypeEnum FONT_B_9x24
public static final ESCFontTypeEnum FONT_C_9x17
public static final ESCFontTypeEnum FONT_D_8x16
public static ESCFontTypeEnum[] values()
for (ESCFontTypeEnum c : ESCFontTypeEnum.values()) System.out.println(c);
public static ESCFontTypeEnum 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