|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<RenderLoop.StopOperation>
org.xith3d.loop.RenderLoop.StopOperation
public static enum RenderLoop.StopOperation
Use this enum for the setStopOperation() method.
It controls the RenderLoop's behavior when it gets stopped.
RenderLoop.setStopOperation(StopOperation)| Enum Constant Summary | |
|---|---|
DESTROY
When the RenderLoop stops, the destroy() method is called. |
|
DESTROY_AND_EXIT
When the RenderLoop stops, the destroy() method is called. |
|
DO_NOTHING
When the RenderLoop stops, it just stops and does nothing more. |
|
EXIT
When the RenderLoop stops, the exit() method is called. |
|
| Method Summary | |
|---|---|
static RenderLoop.StopOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RenderLoop.StopOperation[] |
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.StopOperation DO_NOTHING
public static final RenderLoop.StopOperation EXIT
public static final RenderLoop.StopOperation DESTROY
RenderLoop.destroy()public static final RenderLoop.StopOperation DESTROY_AND_EXIT
RenderLoop.destroy(),
RenderLoop.exit()| Method Detail |
|---|
public static RenderLoop.StopOperation[] values()
for (RenderLoop.StopOperation c : RenderLoop.StopOperation.values()) System.out.println(c);
public static RenderLoop.StopOperation 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 | |||||||||