Enum Class ELspInteractionStatus
java.lang.Object
java.lang.Enum<ELspInteractionStatus>
com.luciad.view.lightspeed.editor.operation.ELspInteractionStatus
- All Implemented Interfaces:
Serializable
,Comparable<ELspInteractionStatus>
,Constable
Indicates the state of the object being edited after an interaction
performed through a handle.
- Since:
- 2012.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that this edit operation is an important key point.Indicates that this edit operation is transitional. -
Method Summary
Modifier and TypeMethodDescriptionstatic ELspInteractionStatus
Returns the enum constant of this class with the specified name.static ELspInteractionStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IN_PROGRESS
Indicates that this edit operation is transitional. This means more edit operations are coming. A use case when this occurs is for instance the mouse button is being dragged. All mouse dragged events are marked asIN_PROGRESS
. This makes writing undo behavior easier, as it is more evident to know which operations are transitional and which are final.- See Also:
-
FINISHED
Indicates that this edit operation is an important key point. A use case when this occurs is for instance the mouse button was released. This signifies that, while further edit operations may exist, this edit operation was key, and can be used to, for instance, model a significant point for performing undo operations.- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-