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 SummaryModifier and TypeMethodDescriptionGets the fields of the feature set.Gets the geometry type of the feature set.Gets the spatial reference of the feature set.booleanIndicates 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.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.IterableforEach, spliterator
- 
Method Details- 
isTransferLimitExceededpublic 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
 
- 
iteratorReturns a new iterator over the set of features. Iterators previously returned from this method will become invalid and their methods will throw an IllegalStateException.
- 
getFieldsDescription copied from interface:FeatureSetGets the fields of the feature set.- Specified by:
- getFieldsin interface- FeatureSet
- Returns:
- the fields of the feature set
 
- 
getGeometryTypeDescription copied from interface:FeatureSetGets the geometry type of the feature set.- Specified by:
- getGeometryTypein interface- FeatureSet
- Returns:
- a geometry type
 
- 
getSpatialReferenceDescription copied from interface:FeatureSetGets the spatial reference of the feature set.- Specified by:
- getSpatialReferencein interface- FeatureSet
- Returns:
- a spatial reference
 
 
-