Class WmtsLayerInfo


  • public final class WmtsLayerInfo
    extends java.lang.Object
    Represents metadata about an individual layer in a Web Map Tile Service (WMTS).
    Since:
    100.1.0
    See Also:
    WmtsServiceInfo
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Gets the description of this layer.
      java.lang.String getId()
      Gets the ID of this layer.
      java.util.List<TileInfo.ImageFormat> getImageFormats()
      Gets the supported image formats of the tiles.
      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 layer.
      java.util.List<java.lang.String> getStyles()
      Gets the styles applied to this layer.
      java.util.List<WmtsTileMatrixSet> getTileMatrixSets()
      Gets the tile matrix sets.
      java.lang.String getTitle()
      Gets the title.
      • Methods inherited from class java.lang.Object

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

      • getDescription

        public java.lang.String getDescription()
        Gets the description of this layer.
        Returns:
        the description of this layer
        Since:
        100.1.0
      • getImageFormats

        public java.util.List<TileInfo.ImageFormat> getImageFormats()
        Gets the supported image formats of the tiles.

        The returned collection of image formats supported by the WMTS service is of type TileInfo.ImageFormat.

        Returns:
        an unmodifiable list of supported image formats of the tiles
        Since:
        100.1.0
      • getId

        public java.lang.String getId()
        Gets the ID of this layer.
        Returns:
        the ID of this layer
        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 layer.
        Returns:
        an unmodifiable list of keywords
        Since:
        100.1.0
      • getStyles

        public java.util.List<java.lang.String> getStyles()
        Gets the styles applied to this layer.
        Returns:
        an unmodifiable list of styles
        Since:
        100.1.0
      • getTileMatrixSets

        public java.util.List<WmtsTileMatrixSet> getTileMatrixSets()
        Gets the tile matrix sets. Every set represents a series of tile matrices and some common parameters. This controls the tiles that are available for this layer.
        Returns:
        an unmodifiable list of tile matrix sets
        Since:
        100.1.0
      • getTitle

        public java.lang.String getTitle()
        Gets the title.
        Returns:
        the title
        Since:
        100.1.0