public enum Photometric extends java.lang.Enum<Photometric>
| Enum Constant and Description |
|---|
CIELAB
CIE L*a*b*
|
ICCLAB
CIE L*a*b*, alternate encoding also known as ICC L*a*b*
|
ITULAB
CIE L*a*b*, alternate encoding also known as ITU L*a*b*, defined in ITU-T Rec.
|
LOGL
LOGL
|
LOGLUV
LOGLUV
|
MASK
Transparency Mask.
|
MINISBLACK
BlackIsZero.
|
MINISWHITE
WhiteIsZero.
|
OTHER
Some unknown photometric
|
PALETTE
Palette color.
|
RGB
RGB value of (0,0,0) represents black, and (255,255,255) represents white, assuming 8-bit components.
|
SEPARATED
Seperated, usually CMYK.
|
YCBCR
YCbCr
|
| Modifier and Type | Method and Description |
|---|---|
static Photometric |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Photometric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Photometric MINISWHITE
public static final Photometric MINISBLACK
public static final Photometric RGB
public static final Photometric PALETTE
public static final Photometric MASK
public static final Photometric SEPARATED
public static final Photometric YCBCR
public static final Photometric CIELAB
public static final Photometric ICCLAB
public static final Photometric ITULAB
public static final Photometric LOGL
public static final Photometric LOGLUV
public static final Photometric OTHER
public static Photometric[] values()
for (Photometric c : Photometric.values()) System.out.println(c);
public static Photometric 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