Enum Class ServiceFeatureTable.QueryFeatureFields

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

public static enum ServiceFeatureTable.QueryFeatureFields extends Enum<ServiceFeatureTable.QueryFeatureFields>
Since:
100.0.0
  • Enum Constant Details

    • IDS_ONLY

      public static final ServiceFeatureTable.QueryFeatureFields IDS_ONLY
      Includes only the object id and global id in the ArcGISFeatures of the query result. The features are returned with no other attributes. The geometry returned by this request does not include m values, even if they are defined in the feature service.
    • MINIMUM

      public static final ServiceFeatureTable.QueryFeatureFields MINIMUM
      Includes the minimum set of attributes in the ArcGISFeatures of the query result. The geometry returned by this request does not include m values, even if they are defined in the feature service.
    • LOAD_ALL

      public static final ServiceFeatureTable.QueryFeatureFields LOAD_ALL
      Includes all available attributes in the ArcGISFeatures of the query result. This constant loads the features returned by the query, which makes all attributes available. The geometry returned by this request includes m values if they are defined in the feature service.
  • Method Details

    • values

      public static ServiceFeatureTable.QueryFeatureFields[] 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 ServiceFeatureTable.QueryFeatureFields 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