public static enum GLLoopStateManager.LoopState extends Enum<GLLoopStateManager.LoopState>
修飾子とタイプ | メソッドと説明 |
---|---|
static GLLoopStateManager.LoopState |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static GLLoopStateManager.LoopState[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final GLLoopStateManager.LoopState Run
public static final GLLoopStateManager.LoopState Pause
public static final GLLoopStateManager.LoopState Destroyed
public static GLLoopStateManager.LoopState[] values()
for(GLLoopStateManager.LoopState c: GLLoopStateManager.LoopState.values()) System.out.println(c);
public static GLLoopStateManager.LoopState valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合