|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Event.PHASE>
com.transmote.nest.events.Event.PHASE
public static enum Event.PHASE
Enumerated display list event phase.
| Enum Constant Summary | |
|---|---|
AT_TARGET
The Event instance is at the event target. |
|
BUBBLING
The Event instance is moving back up the display list from the event target. |
|
CAPTURE
The Event instance is down through the display list toward the event target. |
|
NOT_ON_DISPLAY_LIST
The Event instance is not traversing the display list. |
|
| Method Summary | |
|---|---|
static Event.PHASE |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Event.PHASE[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, 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 Event.PHASE BUBBLING
public static final Event.PHASE AT_TARGET
public static final Event.PHASE CAPTURE
public static final Event.PHASE NOT_ON_DISPLAY_LIST
| Method Detail |
|---|
public static Event.PHASE[] values()
for (Event.PHASE c : Event.PHASE.values()) System.out.println(c);
public static Event.PHASE valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||