public enum FontCreateFlags extends java.lang.Enum<FontCreateFlags>
| Enum Constant and Description |
|---|
ALL_WIDTHS
Supply the entire widths table (this affects Type0 fonts only).
|
DEFER_WIDTHS
Wait to get the widths until later (this affects Type0 fonts only).
|
DO_NOT_EMBED
Do not embed the font.
|
EMBED_OPEN_TYPE
Embed an OpenType style font subset, if appropriate.
|
EMBEDDED
Embed the font.
|
ENCODE_BY_GID
Create a CIDFont with identity (GID) encoding.
|
GIDOVERRIDE
Convert cp to gid with identity embedded.
|
SUBSET
Subset the font.
|
TO_UNICODE
Create a ToUnicode CMap.
|
| Modifier and Type | Method and Description |
|---|---|
static FontCreateFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontCreateFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontCreateFlags EMBEDDED
public static final FontCreateFlags SUBSET
public static final FontCreateFlags DO_NOT_EMBED
public static final FontCreateFlags ENCODE_BY_GID
public static final FontCreateFlags DEFER_WIDTHS
public static final FontCreateFlags GIDOVERRIDE
public static final FontCreateFlags TO_UNICODE
public static final FontCreateFlags ALL_WIDTHS
public static final FontCreateFlags EMBED_OPEN_TYPE
public static FontCreateFlags[] values()
for (FontCreateFlags c : FontCreateFlags.values()) System.out.println(c);
public static FontCreateFlags 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