Module com.esri.arcgisruntime
Class GeoprocessingFeatureSet
java.lang.Object
com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingFeatureSet
- All Implemented Interfaces:
FeatureSet,Iterable<Feature>
Geoprocessing feature set is a read-only set of features that are returned from
GeoprocessingFeatures.- Since:
- 100.0.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns an unmodifiable list of fields in this feature set.Gets the geometry type of the feature set.Gets the spatial reference of the feature set.booleanReturns if the transfer limit has been exceeded or not.iterator()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
isTransferLimitExceeded
public boolean isTransferLimitExceeded()Returns if the transfer limit has been exceeded or not. If this is exceeded, the maximum number of features that the server can return has been reached and more data may be available on the server.- Returns:
- true if the transfer limit has been exceeded
- Since:
- 100.0.0
-
getFields
Returns an unmodifiable list of fields in this feature set.- Specified by:
getFieldsin interfaceFeatureSet- Returns:
- the fields
- Since:
- 100.0.0
-
getGeometryType
Description copied from interface:FeatureSetGets the geometry type of the feature set.- Specified by:
getGeometryTypein interfaceFeatureSet- Returns:
- a geometry type
-
getSpatialReference
Description copied from interface:FeatureSetGets the spatial reference of the feature set.- Specified by:
getSpatialReferencein interfaceFeatureSet- Returns:
- a spatial reference
-
iterator
-