public static enum TextureContent.ContentFormat extends java.lang.Enum<TextureContent.ContentFormat>
Enum Constant and Description |
---|
GRAYSCALE_ALPHA_BYTE_2 |
GRAYSCALE_ALPHA_SHORT_2 |
GRAYSCALE_BYTE |
GRAYSCALE_SHORT |
GRAYSCALE_UBYTE |
GRAYSCALE_USHORT |
RGB_BYTE_3 |
RGBA_BYTE_4 |
RGBA_INTEGER |
Modifier and Type | Method and Description |
---|---|
static TextureContent.ContentFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextureContent.ContentFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextureContent.ContentFormat RGB_BYTE_3
public static final TextureContent.ContentFormat RGBA_BYTE_4
public static final TextureContent.ContentFormat RGBA_INTEGER
public static final TextureContent.ContentFormat GRAYSCALE_BYTE
public static final TextureContent.ContentFormat GRAYSCALE_UBYTE
public static final TextureContent.ContentFormat GRAYSCALE_ALPHA_BYTE_2
public static final TextureContent.ContentFormat GRAYSCALE_SHORT
public static final TextureContent.ContentFormat GRAYSCALE_USHORT
public static final TextureContent.ContentFormat GRAYSCALE_ALPHA_SHORT_2
public static TextureContent.ContentFormat[] values()
for (TextureContent.ContentFormat c : TextureContent.ContentFormat.values()) System.out.println(c);
public static TextureContent.ContentFormat 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