Package com.esri.arcgisruntime.data
Enum ServiceFeatureTable.QueryFeatureFields
- java.lang.Object
-
- java.lang.Enum<ServiceFeatureTable.QueryFeatureFields>
-
- com.esri.arcgisruntime.data.ServiceFeatureTable.QueryFeatureFields
-
- All Implemented Interfaces:
Serializable
,Comparable<ServiceFeatureTable.QueryFeatureFields>
- Enclosing class:
- ServiceFeatureTable
public static enum ServiceFeatureTable.QueryFeatureFields extends Enum<ServiceFeatureTable.QueryFeatureFields>
Controls which attributes are included in the features returned byServiceFeatureTable.queryFeaturesAsync(QueryParameters, QueryFeatureFields)
orServiceFeatureTable.queryRelatedFeaturesAsync(ArcGISFeature, RelatedQueryParameters, QueryFeatureFields)
.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDS_ONLY
Includes only the object id and global id in the ArcGISFeatures of the query result.LOAD_ALL
Includes all available attributes in the ArcGISFeatures of the query result.MINIMUM
Includes the minimum set of attributes in the ArcGISFeatures of the query result.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ServiceFeatureTable.QueryFeatureFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceFeatureTable.QueryFeatureFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static ServiceFeatureTable.QueryFeatureFields[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServiceFeatureTable.QueryFeatureFields c : ServiceFeatureTable.QueryFeatureFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceFeatureTable.QueryFeatureFields valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-