java.lang.Object
com.esri.arcgisruntime.data.FeatureQueryResult
- All Implemented Interfaces:
FeatureSet
,Iterable<Feature>
Represents the result of a query on a FeatureTable. This iterator traverses the features found by the query.
- Since:
- 100.0.0
-
Method Summary
Modifier and TypeMethodDescriptionGets the fields of the feature set.Gets the geometry type of the feature set.Gets the spatial reference of the feature set.boolean
Indicates if the number of features in the query result exceeded the transfer limit set on the service.iterator()
Returns a new iterator over the set of features.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
isTransferLimitExceeded
public boolean isTransferLimitExceeded()Indicates if the number of features in the query result exceeded the transfer limit set on the service.- Returns:
- true if the number of features in the query result exceeded the transfer limit; otherwise false
- Since:
- 100.0.0
-
iterator
Returns a new iterator over the set of features. Iterators previously returned from this method will become invalid and their methods will throw an IllegalStateException. -
getFields
Description copied from interface:FeatureSet
Gets the fields of the feature set.- Specified by:
getFields
in interfaceFeatureSet
- Returns:
- the fields of the feature set
-
getGeometryType
Description copied from interface:FeatureSet
Gets the geometry type of the feature set.- Specified by:
getGeometryType
in interfaceFeatureSet
- Returns:
- a geometry type
-
getSpatialReference
Description copied from interface:FeatureSet
Gets the spatial reference of the feature set.- Specified by:
getSpatialReference
in interfaceFeatureSet
- Returns:
- a spatial reference
-