Class GeoprocessingFeatureSet
- java.lang.Object
- 
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingFeatureSet
 
- 
- All Implemented Interfaces:
- FeatureSet,- java.lang.Iterable<Feature>
 
 public final class GeoprocessingFeatureSet extends java.lang.Object implements FeatureSet Geoprocessing feature set is a read-only set of features that are returned fromGeoprocessingFeatures.- Since:
- 100.0.0
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Field>getFields()Returns an unmodifiable list of fields in this feature set.GeometryTypegetGeometryType()Gets the geometry type of the feature set.SpatialReferencegetSpatialReference()Gets the spatial reference of the feature set.booleanisTransferLimitExceeded()Returns if the transfer limit has been exceeded or not.java.util.Iterator<Feature>iterator()
 
- 
- 
- 
Method Detail- 
isTransferLimitExceededpublic 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
 
 - 
getFieldspublic java.util.List<Field> getFields() Returns an unmodifiable list of fields in this feature set.- Specified by:
- getFieldsin interface- FeatureSet
- Returns:
- the fields
- Since:
- 100.0.0
 
 - 
getGeometryTypepublic GeometryType getGeometryType() Description copied from interface:FeatureSetGets the geometry type of the feature set.- Specified by:
- getGeometryTypein interface- FeatureSet
- Returns:
- a geometry type
 
 - 
getSpatialReferencepublic SpatialReference getSpatialReference() Description copied from interface:FeatureSetGets the spatial reference of the feature set.- Specified by:
- getSpatialReferencein interface- FeatureSet
- Returns:
- a spatial reference
 
 
- 
 
-