Enum Class SketchCreationMode

java.lang.Object
java.lang.Enum<SketchCreationMode>
com.esri.arcgisruntime.mapping.view.SketchCreationMode
All Implemented Interfaces:
Serializable, Comparable<SketchCreationMode>, Constable

@Deprecated(since="200.2.0", forRemoval=true) public enum SketchCreationMode extends Enum<SketchCreationMode>
Deprecated, for removal: This API element is subject to removal in a future version.
since 200.2.0 along with SketchEditor. New development should use GeometryEditor instead. GeometryType provides analogous functionality for GeometryEditor.
Defines what type of geometry is going to be sketched during a SketchEditor session.
Since:
100.1.0
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Polyline geometry in one stroke by freehand gesture
    Deprecated, for removal: This API element is subject to removal in a future version.
    Polygon geometry in one stroke by freehand gesture
    Deprecated, for removal: This API element is subject to removal in a future version.
    Multipoint geometry
    Deprecated, for removal: This API element is subject to removal in a future version.
    Point geometry
    Deprecated, for removal: This API element is subject to removal in a future version.
    Polygon geometry incrementally vertex by vertex
    Deprecated, for removal: This API element is subject to removal in a future version.
    Polyline geometry incrementally vertex by vertex
    Deprecated, for removal: This API element is subject to removal in a future version.
    Rectangle geometry.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • POINT

      public static final SketchCreationMode POINT
      Deprecated, for removal: This API element is subject to removal in a future version.
      Point geometry
      Since:
      100.1.0
    • MULTIPOINT

      public static final SketchCreationMode MULTIPOINT
      Deprecated, for removal: This API element is subject to removal in a future version.
      Multipoint geometry
      Since:
      100.1.0
    • POLYLINE

      public static final SketchCreationMode POLYLINE
      Deprecated, for removal: This API element is subject to removal in a future version.
      Polyline geometry incrementally vertex by vertex
      Since:
      100.1.0
    • POLYGON

      public static final SketchCreationMode POLYGON
      Deprecated, for removal: This API element is subject to removal in a future version.
      Polygon geometry incrementally vertex by vertex
      Since:
      100.1.0
    • FREEHAND_LINE

      public static final SketchCreationMode FREEHAND_LINE
      Deprecated, for removal: This API element is subject to removal in a future version.
      Polyline geometry in one stroke by freehand gesture
      Since:
      100.1.0
    • FREEHAND_POLYGON

      public static final SketchCreationMode FREEHAND_POLYGON
      Deprecated, for removal: This API element is subject to removal in a future version.
      Polygon geometry in one stroke by freehand gesture
      Since:
      100.1.0
    • RECTANGLE

      public static final SketchCreationMode RECTANGLE
      Deprecated, for removal: This API element is subject to removal in a future version.
      Rectangle geometry. A rectangle is drawn by three points - the first two establish a base line and the third defines the rectangle on one side of the base line.
      Since:
      100.9.0
  • Method Details

    • values

      public static SketchCreationMode[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      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 SketchCreationMode valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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