Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.data
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>
Controls which attributes are included in the features returned by
ServiceFeatureTable.queryFeaturesAsync(QueryParameters, QueryFeatureFields)
or
ServiceFeatureTable.queryRelatedFeaturesAsync(ArcGISFeature, RelatedQueryParameters, QueryFeatureFields)
.- 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
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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
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
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
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 nameNullPointerException
- if the argument is null
-