public enum FontType extends Enum<FontType>
| Enum Constant and Description |
|---|
CFF
Type2 or CFF font
|
TrueType
TrueType font
|
TrueTypeCollection
TrueType collection
|
Type1
Type 1 font
|
| Modifier and Type | Method and Description |
|---|---|
static FontType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontType TrueType
public static final FontType TrueTypeCollection
public static final FontType Type1
public static final FontType CFF
public static FontType[] values()
for (FontType c : FontType.values()) System.out.println(c);
public static FontType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null