Class MapServiceCapabilities


  • public final class MapServiceCapabilities
    extends java.lang.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 Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isDataSupported()
      Indicates if map service supports various data operations.
      boolean isMapSupported()
      Indicates if the map service supports the map capability.
      boolean isQuerySupported()
      Indicates if the map service supports query operations.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • 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