public static enum Image.ImageChannelOrder extends java.lang.Enum<Image.ImageChannelOrder>
ImageChannelOrder
specifies the number of channels and the channel layout i.e. the
memory layout in which channels are stored in the image.Enum Constant and Description |
---|
A |
ARGB |
BGRA |
INTENSITY |
LUMINANCE |
R |
RA |
RG |
RGB |
RGBA |
RGBx |
RGx |
Rx |
Modifier and Type | Method and Description |
---|---|
static Image.ImageChannelOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Image.ImageChannelOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Image.ImageChannelOrder R
public static final Image.ImageChannelOrder Rx
public static final Image.ImageChannelOrder A
public static final Image.ImageChannelOrder INTENSITY
public static final Image.ImageChannelOrder LUMINANCE
public static final Image.ImageChannelOrder RG
public static final Image.ImageChannelOrder RGx
public static final Image.ImageChannelOrder RA
public static final Image.ImageChannelOrder RGB
public static final Image.ImageChannelOrder RGBx
public static final Image.ImageChannelOrder RGBA
public static final Image.ImageChannelOrder ARGB
public static final Image.ImageChannelOrder BGRA
public static Image.ImageChannelOrder[] values()
for (Image.ImageChannelOrder c : Image.ImageChannelOrder.values()) System.out.println(c);
public static Image.ImageChannelOrder 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