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