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