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
      Unknown field type.
    • SHORT

      public static final Field.Type SHORT
      A 16-bit integer value (Java Short).
    • INTEGER

      public static final Field.Type INTEGER
      A 32-bit integer value (Java Integer).
    • GUID

      public static final Field.Type GUID
      Globally Unique Identifier value (Java UUID).
    • FLOAT

      public static final Field.Type FLOAT
      A single-precision 32-bit floating point value (Java Float).
    • DOUBLE

      public static final Field.Type DOUBLE
      A double-precision 64-bit floating point value (Java Double).
    • DATE

      public static final Field.Type DATE
      A date time value (Java Calendar). Warning: Shapefile formats do not store the time component.
    • TEXT

      public static final Field.Type TEXT
      A string value (Java String).
    • OID

      public static final Field.Type OID
      An object ID value (Java Long).
    • GLOBALID

      public static final Field.Type GLOBALID
      An esri global ID value (Java UUID).
    • BLOB

      public static final Field.Type BLOB
      A binary large object (Java byte array).
    • GEOMETRY

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

      public static final Field.Type RASTER
      A raster value (Java byte array).
    • XML

      public static final Field.Type XML
      An xml value.
  • 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