public enum EventProcessingType extends java.lang.Enum<EventProcessingType>
| Enum Constant | Description |
|---|---|
ALL_WIDGETS |
Means that an event is processed by all widgets in whole scene.
|
FOCUSED_WIDGET_AND_ITS_CHILDREN |
Means that an event is processed by a focused widget and its children only.
|
FOCUSED_WIDGET_AND_ITS_CHILDREN_AND_ITS_PARENTS |
Means that an event is processed by a focused widget and its children and its parents only.
|
FOCUSED_WIDGET_AND_ITS_PARENTS |
Means that an event is processed by a focused widget of a scene and then by its parents only.
|
| Modifier and Type | Method | Description |
|---|---|---|
static EventProcessingType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EventProcessingType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventProcessingType ALL_WIDGETS
public static final EventProcessingType FOCUSED_WIDGET_AND_ITS_PARENTS
public static final EventProcessingType FOCUSED_WIDGET_AND_ITS_CHILDREN
public static final EventProcessingType FOCUSED_WIDGET_AND_ITS_CHILDREN_AND_ITS_PARENTS
public static EventProcessingType[] values()
for (EventProcessingType c : EventProcessingType.values()) System.out.println(c);
public static EventProcessingType 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 namejava.lang.NullPointerException - if the argument is nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.