Class FeatureServiceCapabilities
- java.lang.Object
-
- com.esri.arcgisruntime.arcgisservices.FeatureServiceCapabilities
-
public final class FeatureServiceCapabilities extends Object
Represents capabilities supported by an ArcGIS feature service, accessed from the feature layers info objectArcGISFeatureLayerInfo
.- Since:
- 100.0.0
- See Also:
ArcGISFeatureLayerInfo
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isSupportsCreate()
Indicates whether the service allows new features to be created.boolean
isSupportsDelete()
Indicates whether the service allows features to be deleted.boolean
isSupportsEditing()
Indicates whether the service allows features to be edited.boolean
isSupportsQuery()
Indicates whether the service allows features to be queried.boolean
isSupportsSync()
Indicates whether the service allows a features to be synced.boolean
isSupportsUpdate()
Indicates whether the service allows a features to be updated.
-
-
-
Method Detail
-
isSupportsCreate
public boolean isSupportsCreate()
Indicates whether the service allows new features to be created.- Returns:
- true if the feature service supports creating features, otherwise false
- Since:
- 100.0.0
-
isSupportsDelete
public boolean isSupportsDelete()
Indicates whether the service allows features to be deleted.- Returns:
- true if the feature service supports deleting features, otherwise false
- Since:
- 100.0.0
-
isSupportsQuery
public boolean isSupportsQuery()
Indicates whether the service allows features to be queried.- Returns:
- true if the feature service supports querying features, otherwise false
- Since:
- 100.0.0
-
isSupportsUpdate
public boolean isSupportsUpdate()
Indicates whether the service allows a features to be updated.- Returns:
- true if the feature service supports updating features, otherwise false
- Since:
- 100.0.0
-
isSupportsSync
public boolean isSupportsSync()
Indicates whether the service allows a features to be synced.- Returns:
- true if the feature service supports syncing features, otherwise false
- Since:
- 100.0.0
-
isSupportsEditing
public boolean isSupportsEditing()
Indicates whether the service allows features to be edited.- Returns:
- true if the feature service supports editing features, otherwise false
- Since:
- 100.0.0
-
-