public enum NativeEventPhase extends Enum<NativeEventPhase>
Enum Constant and Description |
---|
AT_TARGET |
BUBBLING_PHASE |
CAPTURING_PHASE |
NONE |
Modifier and Type | Method and Description |
---|---|
static NativeEventPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NativeEventPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeEventPhase NONE
public static final NativeEventPhase CAPTURING_PHASE
public static final NativeEventPhase AT_TARGET
public static final NativeEventPhase BUBBLING_PHASE
public static NativeEventPhase[] values()
for (NativeEventPhase c : NativeEventPhase.values()) System.out.println(c);
public static NativeEventPhase 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 nullCopyright © 2018 Xalys. All rights reserved.