public enum AiliaImageFormat extends java.lang.Enum<AiliaImageFormat>
Enum Constant and Description |
---|
BGRA
BGRA order
|
BGRA_B2T
BGRA order (Bottom to top)
|
RGBA
RGBA order
|
RGBA_B2T
RGBA order (Bottom to top)
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AiliaImageFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AiliaImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AiliaImageFormat RGBA
public static final AiliaImageFormat BGRA
public static final AiliaImageFormat RGBA_B2T
public static final AiliaImageFormat BGRA_B2T
public static AiliaImageFormat[] values()
for (AiliaImageFormat c : AiliaImageFormat.values()) System.out.println(c);
public static AiliaImageFormat 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 nullpublic int getValue()