public enum EventProcessingType extends Enum<EventProcessingType>
Enum.EnumDesc<E extends Enum<E>>
Enum Constant and 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 and Description |
---|---|
static EventProcessingType |
valueOf(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()
public static EventProcessingType 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 null