public static enum PixelFormat.CType extends Enum<PixelFormat.CType>
| Enum Constant and Description |
|---|
A
Alpha component
|
B
Blue component
|
G
Green component
|
R
Red component
|
U
U component of YUV
|
V
V component of YUV
|
Y
Luminance component, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static PixelFormat.CType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PixelFormat.CType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PixelFormat.CType R
public static final PixelFormat.CType G
public static final PixelFormat.CType B
public static final PixelFormat.CType A
public static final PixelFormat.CType Y
public static final PixelFormat.CType U
public static final PixelFormat.CType V
public static PixelFormat.CType[] values()
for (PixelFormat.CType c : PixelFormat.CType.values()) System.out.println(c);
public static PixelFormat.CType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright 2010 JogAmp Community.