Class GeoprocessingFeatureSet

java.lang.Object
com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingFeatureSet
All Implemented Interfaces:
FeatureSet, Iterable<Feature>

public final class GeoprocessingFeatureSet extends Object implements FeatureSet
Geoprocessing feature set is a read-only set of features that are returned from GeoprocessingFeatures.
Since:
100.0.0
  • Method Details Link icon

    • isTransferLimitExceeded Link icon

      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 Link icon

      public List<Field> getFields()
      Returns an unmodifiable list of fields in this feature set.
      Specified by:
      getFields in interface FeatureSet
      Returns:
      the fields
      Since:
      100.0.0
    • getGeometryType Link icon

      public GeometryType getGeometryType()
      Description copied from interface: FeatureSet
      Gets the geometry type of the feature set.
      Specified by:
      getGeometryType in interface FeatureSet
      Returns:
      a geometry type
    • getSpatialReference Link icon

      public SpatialReference getSpatialReference()
      Description copied from interface: FeatureSet
      Gets the spatial reference of the feature set.
      Specified by:
      getSpatialReference in interface FeatureSet
      Returns:
      a spatial reference
    • iterator Link icon

      public Iterator<Feature> iterator()
      Specified by:
      iterator in interface Iterable<Feature>