Class MapServiceCapabilities

java.lang.Object
com.esri.arcgisruntime.arcgisservices.MapServiceCapabilities

public final class MapServiceCapabilities extends Object
Indicates the capabilities of an ArcGIS map service, including whether it supports exporting map images, data and query operations.
Since:
100.0.0
  • Method Details

    • isDataSupported

      public boolean isDataSupported()
      Indicates if map service supports various data operations. These include operations like find, query, and related records. All ArcGIS REST API operations define their required capability in the REST API help documentation.
      Returns:
      true if the data capability is supported, false otherwise
      Since:
      100.0.0
    • isMapSupported

      public boolean isMapSupported()
      Indicates if the map service supports the map capability. This includes operations like exporting map images and listing all layers and tables. All ArcGIS REST API operations define their required capability in the REST API help documentation.
      Returns:
      true if the map capability is supported, false otherwise
      Since:
      100.0.0
    • isQuerySupported

      public boolean isQuerySupported()
      Indicates if the map service supports query operations. This includes operations like identify and accessing attachment data. All ArcGIS REST API operations define their required capability in the REST API help documentation.
      Returns:
      true if the query capability is supported, false otherwise
      Since:
      100.0.0