|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PNGDecoder.Format>
zombie.core.textures.PNGDecoder.Format
public static enum PNGDecoder.Format
Enum Constant Summary | |
---|---|
ABGR
|
|
ALPHA
|
|
BGRA
|
|
LUMINANCE
|
|
LUMINANCE_ALPHA
|
|
RGB
|
|
RGBA
|
Method Summary | |
---|---|
int |
getNumComponents()
|
boolean |
isHasAlpha()
|
static PNGDecoder.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PNGDecoder.Format[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PNGDecoder.Format ALPHA
public static final PNGDecoder.Format LUMINANCE
public static final PNGDecoder.Format LUMINANCE_ALPHA
public static final PNGDecoder.Format RGB
public static final PNGDecoder.Format RGBA
public static final PNGDecoder.Format BGRA
public static final PNGDecoder.Format ABGR
Method Detail |
---|
public static PNGDecoder.Format[] values()
for (PNGDecoder.Format c : PNGDecoder.Format.values()) System.out.println(c);
public static PNGDecoder.Format 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 name
java.lang.NullPointerException
- if the argument is nullpublic int getNumComponents()
public boolean isHasAlpha()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |