public enum FontInclusion extends Enum<FontInclusion>
| Enum Constant and Description |
|---|
embeddedAndReferencedFonts
Fonts are embedded and referenced.
|
embeddedFonts
Fonts are embedded.
|
none
Fonts are not embedded in the resulting PostScript file.
|
| Modifier and Type | Method and Description |
|---|---|
static FontInclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontInclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontInclusion none
public static final FontInclusion embeddedFonts
public static final FontInclusion embeddedAndReferencedFonts
public static FontInclusion[] values()
for (FontInclusion c : FontInclusion.values()) System.out.println(c);
public static FontInclusion 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 nullCopyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.