Serializable
, Comparable<ObjectSceneEventType>
public enum ObjectSceneEventType extends Enum<ObjectSceneEventType>
Enum Constant | Description |
---|---|
OBJECT_ADDED |
Related to ObjectSceneListener.objectAdded method.
|
OBJECT_FOCUS_CHANGED |
Related to ObjectSceneListener.focusChanged method.
|
OBJECT_HIGHLIGHTING_CHANGED |
Related to ObjectSceneListener.highlightingChanged method.
|
OBJECT_HOVER_CHANGED |
Related to ObjectSceneListener.hoverChanged method.
|
OBJECT_REMOVED |
Related to ObjectSceneListener.objectRemoved method.
|
OBJECT_SELECTION_CHANGED |
Related to ObjectSceneListener.selectionChanged method.
|
OBJECT_STATE_CHANGED |
Related to ObjectSceneListener.objectStateChanged method.
|
Modifier and Type | Method | Description |
---|---|---|
static ObjectSceneEventType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ObjectSceneEventType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectSceneEventType OBJECT_ADDED
public static final ObjectSceneEventType OBJECT_REMOVED
public static final ObjectSceneEventType OBJECT_STATE_CHANGED
public static final ObjectSceneEventType OBJECT_SELECTION_CHANGED
public static final ObjectSceneEventType OBJECT_HIGHLIGHTING_CHANGED
public static final ObjectSceneEventType OBJECT_HOVER_CHANGED
public static final ObjectSceneEventType OBJECT_FOCUS_CHANGED
public static ObjectSceneEventType[] values()
for (ObjectSceneEventType c : ObjectSceneEventType.values()) System.out.println(c);
public static ObjectSceneEventType 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 April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.