|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MoveMode>
to.etc.domui.state.MoveMode
public enum MoveMode
Enum Constant Summary | |
---|---|
BACK
Move back to the page above me. |
|
NEW
Create a NEW shelve: clear the current shelve and this page becomes the one on top. |
|
REDIRECT
|
|
REPLACE
Replace the "current" page with this page, but leave the shelve stack in order. |
|
SUB
Shelve the current page and add the new page above it. |
Method Summary | |
---|---|
static MoveMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MoveMode[] |
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 MoveMode NEW
public static final MoveMode SUB
public static final MoveMode BACK
public static final MoveMode REPLACE
public static final MoveMode REDIRECT
Method Detail |
---|
public static MoveMode[] values()
for (MoveMode c : MoveMode.values()) System.out.println(c);
public static MoveMode 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 |