public enum EmbedFlags extends java.lang.Enum<EmbedFlags>
| Enum Constant and Description |
|---|
DONT_SCAN_DOCUMENT
If set, the document will not be scanned for font usage when embedding and subsetting.
|
NONE
Fonts marked for subsetting/embedding will be embedded.
|
SUBSET
Fonts will be subset when embedded.
|
SUBSET_OF_EMBEDDED_FONT
If set, fonts that have already been embedded but are not subset fonts, will be reembedded as a subset font.
|
| Modifier and Type | Method and Description |
|---|---|
static EmbedFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmbedFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbedFlags NONE
public static final EmbedFlags SUBSET
This flag implies a scan of the document text to ensure that all required characters are in the subset.
public static final EmbedFlags SUBSET_OF_EMBEDDED_FONT
If clear, already embedded fonts will not be re-scanned for embedding at all.
public static final EmbedFlags DONT_SCAN_DOCUMENT
public static EmbedFlags[] values()
for (EmbedFlags c : EmbedFlags.values()) System.out.println(c);
public static EmbedFlags 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