public enum ColorConvertActionType extends java.lang.Enum<ColorConvertActionType>
| Enum Constant and Description |
|---|
CONVERT_COLOR
Convert to target space.
|
DECALIBRATE_COLOR
Convert calibrated space to device space.
|
DOWN_COVERT_COLOR
Convert NChannel space to DeviceN space.
|
PRESERVE_COLOR
Do nothing but handle ink aliases.
|
| Modifier and Type | Method and Description |
|---|---|
static ColorConvertActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorConvertActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorConvertActionType PRESERVE_COLOR
public static final ColorConvertActionType CONVERT_COLOR
public static final ColorConvertActionType DECALIBRATE_COLOR
public static final ColorConvertActionType DOWN_COVERT_COLOR
public static ColorConvertActionType[] values()
for (ColorConvertActionType c : ColorConvertActionType.values()) System.out.println(c);
public static ColorConvertActionType 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