public enum SeparationPreviewOptions extends java.lang.Enum<SeparationPreviewOptions>
| Enum Constant and Description |
|---|
CONVERT_TO_PROCESS
Convert this colorant to a process color for a separation preview.
|
DONT_EMIT_COLORANT
Don't emit a plate for this colorant for a separation preview.
|
EMIT_COLORANT
Emit a plate for this colorant in a separation preview.
|
| Modifier and Type | Method and Description |
|---|---|
static SeparationPreviewOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SeparationPreviewOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeparationPreviewOptions EMIT_COLORANT
public static final SeparationPreviewOptions DONT_EMIT_COLORANT
public static final SeparationPreviewOptions CONVERT_TO_PROCESS
public static SeparationPreviewOptions[] values()
for (SeparationPreviewOptions c : SeparationPreviewOptions.values()) System.out.println(c);
public static SeparationPreviewOptions 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