public enum FontEmbeddingRuleEnum extends Enum<FontEmbeddingRuleEnum>
Represents enumeration of the font embedding rules.
Enum Constant and Description |
---|
FullEmbedding
Fully embed fonts into the PDF document without subsetting.
|
NoneForAscii
Not embedded true type fonts for ASCII characters 32-127.
|
SubsetEmbedding
Embedding fonts into the PDF document as subsets.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static FontEmbeddingRuleEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontEmbeddingRuleEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontEmbeddingRuleEnum NoneForAscii
Not embedded true type fonts for ASCII characters 32-127.
public static final FontEmbeddingRuleEnum SubsetEmbedding
Embedding fonts into the PDF document as subsets.
public static final FontEmbeddingRuleEnum FullEmbedding
Fully embed fonts into the PDF document without subsetting.
public static FontEmbeddingRuleEnum[] values()
for (FontEmbeddingRuleEnum c : FontEmbeddingRuleEnum.values()) System.out.println(c);
public static FontEmbeddingRuleEnum 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 nullpublic int getType()