|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SequenceTransition>
com.guiseframework.model.SequenceTransition
public enum SequenceTransition
A transition in a sequence.
| Enum Constant Summary | |
|---|---|
CURRENT
Transition to the current item in a sequence. |
|
FINISH
Finish the sequence. |
|
FIRST
Transition to the first item in a sequence. |
|
LAST
Transition to the last item in a sequence. |
|
NEXT
Transition to the next item in a sequence. |
|
PREVIOUS
Transition to the previous item in a sequence. |
|
START
Start the sequence. |
|
| Method Summary | |
|---|---|
static SequenceTransition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SequenceTransition[] |
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 SequenceTransition START
public static final SequenceTransition FIRST
public static final SequenceTransition PREVIOUS
public static final SequenceTransition CURRENT
public static final SequenceTransition NEXT
public static final SequenceTransition LAST
public static final SequenceTransition FINISH
| Method Detail |
|---|
public static SequenceTransition[] values()
for (SequenceTransition c : SequenceTransition.values()) System.out.println(c);
public static SequenceTransition 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 | ||||||||