Enum Class ELspCreationMode
- All Implemented Interfaces:
Serializable
,Comparable<ELspCreationMode>
,Constable
Enumeration of the different creation behaviors of point lists.
The different editors using Creation Modes are :
The Creation Mode is used inILspEditor.getCreateHandle(TLspEditContext)
.- Since:
- 2015.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCreate point lists by clicking.Create point lists by clicking and dragging.Create point lists using a single press-drag-release event chain. -
Method Summary
Modifier and TypeMethodDescriptionstatic ELspCreationMode
Returns the enum constant of this class with the specified name.static ELspCreationMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CLICK
Create point lists by clicking. -
FREEHAND_AND_CLICK
Create point lists by clicking and dragging. If there is only a single press-drag-release event chain, the creation is terminated. -
FREEHAND_SINGLE_SWIPE
Create point lists using a single press-drag-release event chain.
-
-
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
-