Package com.esri.arcgisruntime.data
Interface FeatureSet
-
- All Known Implementing Classes:
FeatureCollectionTable
,FeatureQueryResult
,GeoprocessingFeatureSet
,RelatedFeatureQueryResult
public interface FeatureSet extends Iterable<Feature>
This interface encapsulates read-only properties that can be applied to all types of FeatureSets.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Field>
getFields()
Gets the fields of the feature set.GeometryType
getGeometryType()
Gets the geometry type of the feature set.SpatialReference
getSpatialReference()
Gets the spatial reference of the feature set.-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
getFields
List<Field> getFields()
Gets the fields of the feature set.- Returns:
- the fields of the feature set
- Since:
- 100.0.0
-
getGeometryType
GeometryType getGeometryType()
Gets the geometry type of the feature set.- Returns:
- a geometry type
- Since:
- 100.0.0
-
getSpatialReference
SpatialReference getSpatialReference()
Gets the spatial reference of the feature set.- Returns:
- a spatial reference
- Since:
- 100.0.0
-
-