|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<RenderLoop.RunMode>
org.xith3d.loop.RenderLoop.RunMode
public static enum RenderLoop.RunMode
You can start the RenderLoop in the same Thread as the app itself or in a separate one.
| Enum Constant Summary | |
|---|---|
RUN_IN_SAME_THREAD
Let the RenderLoop run in the same Thread. |
|
RUN_IN_SEPARATE_THREAD
Let the RenderLoop run in a separate Thread. |
|
RUN_IN_SEPARATE_THREAD_AND_WAIT
Let the RenderLoop run in a separate Thread and wait for nextIteration() invokation. |
|
| Method Summary | |
|---|---|
static RenderLoop.RunMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RenderLoop.RunMode[] |
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 RenderLoop.RunMode RUN_IN_SAME_THREAD
public static final RenderLoop.RunMode RUN_IN_SEPARATE_THREAD
public static final RenderLoop.RunMode RUN_IN_SEPARATE_THREAD_AND_WAIT
RenderLoop.nextFrame()| Method Detail |
|---|
public static RenderLoop.RunMode[] values()
for (RenderLoop.RunMode c : RenderLoop.RunMode.values()) System.out.println(c);
public static RenderLoop.RunMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||