|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ShaderState>
com.neovisionaries.android.opengl.ShaderState
public enum ShaderState
State of Shader
.
Enum Constant Summary | |
---|---|
COMPILED
The shader source has been compiled successfully. |
|
CREATED
The shader has been created. |
|
DELETED
The shader has been deleted. |
|
SOURCE_SET
A shader source has been set. |
Method Summary | |
---|---|
static ShaderState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ShaderState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 ShaderState CREATED
Shader.Shader(ShaderType)
public static final ShaderState SOURCE_SET
Shader.Shader(ShaderType, String)
,
Shader.setSource(String)
public static final ShaderState COMPILED
Shader.compile()
public static final ShaderState DELETED
Shader.delete()
Method Detail |
---|
public static ShaderState[] values()
for (ShaderState c : ShaderState.values()) System.out.println(c);
public static ShaderState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |