|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ProgramState>
com.neovisionaries.android.opengl.ProgramState
public enum ProgramState
State of Program.
| Enum Constant Summary | |
|---|---|
DELETED
The program has been deleted. |
|
LINKED
The program has been linked successfully. |
|
NEEDS_LINKING
The program needs linking before use. |
|
| Method Summary | |
|---|---|
static ProgramState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ProgramState[] |
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 ProgramState NEEDS_LINKING
Program.Program(Shader...),
Program.attach(Shader),
Program.detach(Shader)public static final ProgramState LINKED
Program.link()public static final ProgramState DELETED
Program.delete()| Method Detail |
|---|
public static ProgramState[] values()
for (ProgramState c : ProgramState.values()) System.out.println(c);
public static ProgramState 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 | |||||||||