public enum EventProcessingType extends Enum<EventProcessingType>
| 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()
for (EventProcessingType c : EventProcessingType.values()) System.out.println(c);
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 nullBuilt on August 24 2014. | Portions Copyright 1997-2014 Sun Microsystems, Inc. All rights reserved.