public static enum Shader.Type extends Enum<Shader.Type>
Enum Constant and Description |
---|
FRAGMENT
Fragment shaders.
|
VERTEX
Vertex shaders.
|
Modifier and Type | Method and Description |
---|---|
static Shader.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Shader.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Shader.Type VERTEX
public static final Shader.Type FRAGMENT
public static Shader.Type[] values()
for (Shader.Type c : Shader.Type.values()) System.out.println(c);
public static Shader.Type 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 null