public enum ColorConvertObjAttrs extends java.lang.Enum<ColorConvertObjAttrs>
| Enum Constant and Description |
|---|
COLOR_CONV_ANY_OBJECT
Any object.
|
COLOR_CONV_IMAGE
Object is an image.
|
COLOR_CONV_JPEG
Object is a JPEG image.
|
COLOR_CONV_JPEG_2000
Object is a JPEG2000 image.
|
COLOR_CONV_LINE_ART
Object is line-art (fill, stroke).
|
COLOR_CONV_LOSSLESS
Image is in a non-lossy space.
|
COLOR_CONV_LOSSY
Image is in a lossy space.
|
COLOR_CONV_OVERPRINT_MODE
Overprint mode (OPM) is set to 1.
|
COLOR_CONV_OVERPRINTING
Object overprints.
|
COLOR_CONV_SHADE
Object is a smooth shade.
|
COLOR_CONV_TEXT
Object is text.
|
COLOR_CONV_TRANSPARENT
Object is not opaque.
|
| Modifier and Type | Method and Description |
|---|---|
static ColorConvertObjAttrs |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorConvertObjAttrs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorConvertObjAttrs COLOR_CONV_IMAGE
public static final ColorConvertObjAttrs COLOR_CONV_JPEG
public static final ColorConvertObjAttrs COLOR_CONV_JPEG_2000
public static final ColorConvertObjAttrs COLOR_CONV_LOSSY
public static final ColorConvertObjAttrs COLOR_CONV_LOSSLESS
public static final ColorConvertObjAttrs COLOR_CONV_TEXT
public static final ColorConvertObjAttrs COLOR_CONV_LINE_ART
public static final ColorConvertObjAttrs COLOR_CONV_SHADE
public static final ColorConvertObjAttrs COLOR_CONV_TRANSPARENT
public static final ColorConvertObjAttrs COLOR_CONV_OVERPRINTING
public static final ColorConvertObjAttrs COLOR_CONV_OVERPRINT_MODE
public static final ColorConvertObjAttrs COLOR_CONV_ANY_OBJECT
public static ColorConvertObjAttrs[] values()
for (ColorConvertObjAttrs c : ColorConvertObjAttrs.values()) System.out.println(c);
public static ColorConvertObjAttrs 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