public enum ColorSpaceID extends java.lang.Enum<ColorSpaceID>
Enum Constant and Description |
---|
CMYK |
FOCOLTONE |
Grayscale |
HKS |
HSB |
Lab |
PANTONE |
RGB |
TOYO88 |
TRUMATCH |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ColorSpaceID |
fromInt(int value) |
java.lang.String |
getDescription() |
int |
getValue() |
static ColorSpaceID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorSpaceID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorSpaceID RGB
public static final ColorSpaceID HSB
public static final ColorSpaceID CMYK
public static final ColorSpaceID PANTONE
public static final ColorSpaceID FOCOLTONE
public static final ColorSpaceID TRUMATCH
public static final ColorSpaceID TOYO88
public static final ColorSpaceID Lab
public static final ColorSpaceID Grayscale
public static final ColorSpaceID HKS
public static final ColorSpaceID UNKNOWN
public static ColorSpaceID[] values()
for (ColorSpaceID c : ColorSpaceID.values()) System.out.println(c);
public static ColorSpaceID 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 nullpublic java.lang.String getDescription()
public int getValue()
public static ColorSpaceID fromInt(int value)