public enum TextureType2 extends Enum<TextureType2> implements IEnumWithValue
| Enum Constant and Description |
|---|
TEXTURE_2D
A two-dimensional texture.
|
TEXTURE_CUBE_MAP_NEGATIVE_X
Negative X face for a cube-mapped texture.
|
TEXTURE_CUBE_MAP_NEGATIVE_Y
Negative Y face for a cube-mapped texture.
|
TEXTURE_CUBE_MAP_NEGATIVE_Z
Negative Z face for a cube-mapped texture.
|
TEXTURE_CUBE_MAP_POSITIVE_X
Positive X face for a cube-mapped texture.
|
TEXTURE_CUBE_MAP_POSITIVE_Y
Positive Y face for a cube-mapped texture.
|
TEXTURE_CUBE_MAP_POSITIVE_Z
Positive Z face for a cube-mapped texture.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static TextureType2 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextureType2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final TextureType2 TEXTURE_2D
public static final TextureType2 TEXTURE_CUBE_MAP_NEGATIVE_X
public static final TextureType2 TEXTURE_CUBE_MAP_NEGATIVE_Y
public static final TextureType2 TEXTURE_CUBE_MAP_NEGATIVE_Z
public static final TextureType2 TEXTURE_CUBE_MAP_POSITIVE_X
public static final TextureType2 TEXTURE_CUBE_MAP_POSITIVE_Y
public static final TextureType2 TEXTURE_CUBE_MAP_POSITIVE_Z
public static TextureType2[] values()
for (TextureType2 c : TextureType2.values()) System.out.println(c);
public static TextureType2 valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.