Package com.esri.arcgisruntime.ogc.wmts
Class WmtsServiceInfo
- java.lang.Object
-
- com.esri.arcgisruntime.ogc.wmts.WmtsServiceInfo
-
public final class WmtsServiceInfo extends java.lang.Object
Represents the service metadata for a Web Map Tile Service (WMTS). This can be obtained fromWmtsService.getServiceInfo()
.- Since:
- 100.1.0
- See Also:
WmtsService
-
-
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<java.lang.String>
getKeywords()
Gets the list of zero or more commonly used or formalized words or phrases used to describe this service.java.util.List<WmtsLayerInfo>
getLayerInfos()
Gets the list of layer infos that are part of this service.java.util.List<WmtsTileMatrixSet>
getTileMatrixSets()
Gets the collection of tile matrices defined at different scales.java.lang.String
getTitle()
Gets the title of this service.java.lang.String
getVersion()
Gets the version of this service.
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Gets the description of the service.- Returns:
- the description of the service
- Since:
- 100.1.0
-
getKeywords
public java.util.List<java.lang.String> getKeywords()
Gets the list of zero or more commonly used or formalized words or phrases used to describe this service.- Returns:
- an unmodifiable list of keywords
- Since:
- 100.1.0
-
getLayerInfos
public java.util.List<WmtsLayerInfo> getLayerInfos()
Gets the list of layer infos that are part of this service.- Returns:
- an unmodifiable list of layer infos
- Since:
- 100.1.0
-
getTileMatrixSets
public java.util.List<WmtsTileMatrixSet> getTileMatrixSets()
Gets the collection of tile matrices defined at different scales.- Returns:
- an unmodifiable list of tile matrices
- Since:
- 100.1.0
-
getTitle
public java.lang.String getTitle()
Gets the title of this service.- Returns:
- the title of this service
- Since:
- 100.1.0
-
getVersion
public java.lang.String getVersion()
Gets the version of this service.- Returns:
- the version of this service
- Since:
- 100.1.0
-
-