public enum MIImageChannel extends java.lang.Enum<MIImageChannel>
| Enum Constant and Description |
|---|
IC_Hue
The hue channel
|
IC_Lightness
The luminance channel
|
IC_Saturation
The saturation channel
|
| Modifier and Type | Field and Description |
|---|---|
int |
value
Enumeration value
|
| Modifier and Type | Method and Description |
|---|---|
static MIImageChannel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MIImageChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MIImageChannel IC_Hue
public static final MIImageChannel IC_Lightness
public static final MIImageChannel IC_Saturation
public static MIImageChannel[] values()
for (MIImageChannel c : MIImageChannel.values()) System.out.println(c);
public static MIImageChannel 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