public enum ColorSpace extends java.lang.Enum<ColorSpace>
| Enum Constant and Description |
|---|
HSBColor |
LabColor |
LCHColor |
RGBColor |
XYZColor |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(ColorDifferenceMeasure m)
Checks if a ColorSpace is equal to a ColorDofferenceMeasure.
|
ColorDifferenceMeasure |
toColorDifferenceMeasure()
Converts a given ColorSpace to its ColorDofferenceMeasure equivalent.
|
static ColorSpace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorSpace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorSpace RGBColor
public static final ColorSpace XYZColor
public static final ColorSpace LabColor
public static final ColorSpace HSBColor
public static final ColorSpace LCHColor
public static ColorSpace[] values()
for (ColorSpace c : ColorSpace.values()) System.out.println(c);
public static ColorSpace 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 ColorDifferenceMeasure toColorDifferenceMeasure()
public boolean equals(ColorDifferenceMeasure m)
m - The ColorDifferenceMeasure to compare to.