Enum Class ELspCreationMode

java.lang.Object
java.lang.Enum<ELspCreationMode>
com.luciad.view.lightspeed.editor.ELspCreationMode
All Implemented Interfaces:
Serializable, Comparable<ELspCreationMode>, Constable

public enum ELspCreationMode extends Enum<ELspCreationMode>
Enumeration of the different creation behaviors of point lists.

The different editors using Creation Modes are :

The Creation Mode is used in ILspEditor.getCreateHandle(TLspEditContext).
Since:
2015.0
  • Enum Constant Details

    • CLICK

      public static final ELspCreationMode CLICK
      Create point lists by clicking.
    • FREEHAND_AND_CLICK

      public static final ELspCreationMode 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

      public static final ELspCreationMode FREEHAND_SINGLE_SWIPE
      Create point lists using a single press-drag-release event chain.
  • Method Details

    • values

      public static ELspCreationMode[] 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

      public static ELspCreationMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null