Enum Class GeometryBuilderType

java.lang.Object
java.lang.Enum<GeometryBuilderType>
com.esri.arcgisruntime.geometry.GeometryBuilderType
All Implemented Interfaces:
Serializable, Comparable<GeometryBuilderType>, Constable

@Deprecated(since="200.1.0", forRemoval=true) public enum GeometryBuilderType extends Enum<GeometryBuilderType>
Deprecated, for removal: This API element is subject to removal in a future version.
as of 200.1.0, use instanceof to determine the GeometryBuilder type
The different types of geometry builders. Each of the different supported geometry builder types. Can get the type by calling GeometryBuilder.getBuilderType().
Since:
100.0.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.
    Envelope builder to which produces envelope geometry.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Multipoint builder to which produces multipoint geometry.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Point builder to which produces point geometry.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Polygon builder to which produces polygon geometry.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Polyline builder to which produces polyline 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_BUILDER

      public static final GeometryBuilderType POINT_BUILDER
      Deprecated, for removal: This API element is subject to removal in a future version.
      Point builder to which produces point geometry.
      Since:
      100.0.0
    • ENVELOPE_BUILDER

      public static final GeometryBuilderType ENVELOPE_BUILDER
      Deprecated, for removal: This API element is subject to removal in a future version.
      Envelope builder to which produces envelope geometry.
      Since:
      100.0.0
    • POLYLINE_BUILDER

      public static final GeometryBuilderType POLYLINE_BUILDER
      Deprecated, for removal: This API element is subject to removal in a future version.
      Polyline builder to which produces polyline geometry.
      Since:
      100.0.0
    • POLYGON_BUILDER

      public static final GeometryBuilderType POLYGON_BUILDER
      Deprecated, for removal: This API element is subject to removal in a future version.
      Polygon builder to which produces polygon geometry.
      Since:
      100.0.0
    • MULTIPOINT_BUILDER

      public static final GeometryBuilderType MULTIPOINT_BUILDER
      Deprecated, for removal: This API element is subject to removal in a future version.
      Multipoint builder to which produces multipoint geometry.
      Since:
      100.0.0
  • Method Details

    • values

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