public enum OverprintMode extends java.lang.Enum<OverprintMode>
| Enum Constant and Description |
|---|
ERASE_COMPONENT
A color component value of 0 in a DeviceCMYK color space should erase the component.
|
LEAVE_UNCHANGED
A color component value of 0 in a DeviceCMYK color space should leave it unchanged.
|
| Modifier and Type | Method and Description |
|---|---|
static OverprintMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OverprintMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverprintMode ERASE_COMPONENT
public static final OverprintMode LEAVE_UNCHANGED
public static OverprintMode[] values()
for (OverprintMode c : OverprintMode.values()) System.out.println(c);
public static OverprintMode 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