Package com.datalogics.PDFL
Enum Class ColorConvertCSpaceType
- All Implemented Interfaces:
Serializable,Comparable<ColorConvertCSpaceType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAlternate color space.Any color space.Base of an indexed space.Calibrated color space.CMYK color space.DeviceN color space.Device color space.Gray color space.Indexed color space.Lab color space.NChannel color space.RGB color space.Separation color space. -
Method Summary
Modifier and TypeMethodDescriptionstatic ColorConvertCSpaceTypeReturns the enum constant of this class with the specified name.static ColorConvertCSpaceType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
COLOR_CONV_DEVICE_SPACE
Device color space. -
COLOR_CONV_CALIBRATED_SPACE
Calibrated color space. -
COLOR_CONV_ALTERNATE_SPACE
Alternate color space. -
COLOR_CONV_BASE_SPACE
Base of an indexed space. -
COLOR_CONV_INDEXED_SPACE
Indexed color space. -
COLOR_CONV_SEPARATION_SPACE
Separation color space. -
COLOR_CONV_DEVICE_NSPACE
DeviceN color space. -
COLOR_CONV_NCHANNEL_SPACE
NChannel color space. -
COLOR_CONV_RGBSPACE
RGB color space. This should only be set if either Device space (unless Lab) or Calibrated space is set. -
COLOR_CONV_CMYKSPACE
CMYK color space. This should only be set if either Device space (unless Lab) or Calibrated space is set. -
COLOR_CONV_GRAY_SPACE
Gray color space. This should only be set if either Device space (unless Lab) or Calibrated space is set. -
COLOR_CONV_LAB_SPACE
Lab color space. -
COLOR_CONV_ANY_SPACE
Any color space.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-