Package com.esri.arcgisruntime.ogc.wms
Class WmsServiceInfo
- java.lang.Object
-
- com.esri.arcgisruntime.ogc.wms.WmsServiceInfo
-
public final class WmsServiceInfo extends java.lang.Object
Represents the service metadata for a Web Map Service (WMS). This can be obtained fromWmsService.getServiceInfo()
.- Since:
- 100.2.0
- See Also:
WmsService
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Gets the description of the service.java.util.List<ArcGISMapImageLayer.ImageFormat>
getImageFormats()
Gets a list of image formats supported by the service.java.util.List<java.lang.String>
getKeywords()
Gets a list of keywords used to describe the service.java.util.List<WmsLayerInfo>
getLayerInfos()
Gets a list of WmsLayerInfo objects for the service's layers.java.lang.String
getName()
Gets the name of the service.java.lang.String
getTitle()
Gets the title of the service.
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Gets the description of the service.- Returns:
- the description of the service
- Since:
- 100.2.0
-
getImageFormats
public java.util.List<ArcGISMapImageLayer.ImageFormat> getImageFormats()
Gets a list of image formats supported by the service.The returned list of image formats supported by the WMS service is of type
ArcGISMapImageLayer.ImageFormat
.- Returns:
- an unmodifiable list of image formats
- Since:
- 100.2.0
-
getKeywords
public java.util.List<java.lang.String> getKeywords()
Gets a list of keywords used to describe the service.- Returns:
- an unmodifiable list of keywords
- Since:
- 100.2.0
-
getLayerInfos
public java.util.List<WmsLayerInfo> getLayerInfos()
Gets a list of WmsLayerInfo objects for the service's layers.- Returns:
- an unmodifiable list of WmsLayerInfo objects
- Since:
- 100.2.0
-
getName
public java.lang.String getName()
Gets the name of the service.- Returns:
- the name of the service
- Since:
- 100.2.0
-
getTitle
public java.lang.String getTitle()
Gets the title of the service.- Returns:
- the title of the service
- Since:
- 100.2.0
-
-