Enum Class Field.Type

java.lang.Object
java.lang.Enum<Field.Type>
com.esri.arcgisruntime.data.Field.Type
All Implemented Interfaces:
Serializable, Comparable<Field.Type>, Constable
Enclosing class:
Field

public static enum Field.Type extends Enum<Field.Type>
The different row value types.
Since:
100.0.0
  • Enum Constant Details

    • UNKNOWN

      public static final Field.Type UNKNOWN
      An unknown type.
      Since:
      100.0.0
    • SHORT

      public static final Field.Type SHORT
      A 16-bit integer value.
      Since:
      100.0.0
    • INTEGER

      public static final Field.Type INTEGER
      A 32-bit integer value.
      Since:
      100.0.0
    • GUID

      public static final Field.Type GUID
      A GUID value.
      Since:
      100.0.0
    • FLOAT

      public static final Field.Type FLOAT
      A float value.
      Since:
      100.0.0
    • DOUBLE

      public static final Field.Type DOUBLE
      A double value.
      Since:
      100.0.0
    • DATE

      public static final Field.Type DATE
      A date time value.

      Shapefile formats do not store the time component.

      Since:
      100.0.0
    • TEXT

      public static final Field.Type TEXT
      A string value.
      Since:
      100.0.0
    • OID

      public static final Field.Type OID
      An object id value.
      Since:
      100.0.0
    • GLOBALID

      public static final Field.Type GLOBALID
      A global id value.
      Since:
      100.0.0
    • BLOB

      public static final Field.Type BLOB
      A blob value.
      Since:
      100.0.0
    • GEOMETRY

      public static final Field.Type GEOMETRY
      A geometry value.
      Since:
      100.0.0
    • RASTER

      public static final Field.Type RASTER
      A raster value.
      Since:
      100.0.0
    • XML

      public static final Field.Type XML
      An XML value.
      Since:
      100.0.0
    • DATE_ONLY

      public static final Field.Type DATE_ONLY
      A date only value.
      Since:
      200.4.0
    • TIME_ONLY

      public static final Field.Type TIME_ONLY
      A time only value.
      Since:
      200.4.0
    • TIMESTAMP_OFFSET

      public static final Field.Type TIMESTAMP_OFFSET
      A timestamp offset value.
      Since:
      200.4.0
    • LONG

      public static final Field.Type LONG
      A 64-bit integer value.
      Since:
      200.4.0
  • Method Details

    • values

      public static Field.Type[] 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 Field.Type 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