Package com.esri.arcgisruntime.data
Interface FeatureSet
-
- All Superinterfaces:
java.lang.Iterable<Feature>
- All Known Implementing Classes:
FeatureCollectionTable
,FeatureQueryResult
,GeoprocessingFeatureSet
,RelatedFeatureQueryResult
public interface FeatureSet extends java.lang.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 java.util.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.
-
-
-
Method Detail
-
getFields
java.util.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
-
-