public static enum ImageDataStream.Interleaving extends java.lang.Enum<ImageDataStream.Interleaving>
| Enum Constant and Description |
|---|
ALPHA_ONLY |
ROW |
SAMPLE |
WITHOUT_ALPHA |
| Modifier and Type | Method and Description |
|---|---|
static ImageDataStream.Interleaving |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageDataStream.Interleaving[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageDataStream.Interleaving SAMPLE
public static final ImageDataStream.Interleaving ROW
public static final ImageDataStream.Interleaving WITHOUT_ALPHA
public static final ImageDataStream.Interleaving ALPHA_ONLY
public static ImageDataStream.Interleaving[] values()
for (ImageDataStream.Interleaving c : ImageDataStream.Interleaving.values()) System.out.println(c);
public static ImageDataStream.Interleaving 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