public enum SeparationFontOptions extends java.lang.Enum<SeparationFontOptions>
| Enum Constant and Description |
|---|
DONT_EMBED_FONTS
Embed no fonts.
|
EMIT_ALL_EMBEDDED_FONTS
Emit all embedded fonts.
|
EMIT_ALL_FONTS
Emit all fonts.
|
| Modifier and Type | Method and Description |
|---|---|
static SeparationFontOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SeparationFontOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeparationFontOptions DONT_EMBED_FONTS
public static final SeparationFontOptions EMIT_ALL_EMBEDDED_FONTS
public static final SeparationFontOptions EMIT_ALL_FONTS
public static SeparationFontOptions[] values()
for (SeparationFontOptions c : SeparationFontOptions.values()) System.out.println(c);
public static SeparationFontOptions 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