@JsType(namespace="xgl.events") public enum EventPhase extends Enum<EventPhase>
Modifier and Type | Method and Description |
---|---|
boolean |
isCapture() |
static EventPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventPhase BUBBLE
public static final EventPhase CAPTURE
public static EventPhase[] values()
for (EventPhase c : EventPhase.values()) System.out.println(c);
public static EventPhase valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isCapture()
Copyright © 2018 Xalys. All rights reserved.