Class WfsLayerInfo


  • public final class WfsLayerInfo
    extends java.lang.Object
    Provides metadata (e.g name, title, description, and more) about a layer (feature type) in a WFS service.
    Since:
    100.5.0
    See Also:
    WfsServiceInfo, WfsFeatureTable
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Gets the description of the layer.
      Envelope getExtent()
      Gets the extent of the layer.
      java.util.List<java.lang.String> getKeywords()
      Gets an unordered list of keywords used to describe the layer.
      java.lang.String getName()
      Gets the layer's uniquely-identifying name.
      java.util.List<SpatialReference> getSpatialReferences()
      Gets the supported spatial references.
      java.lang.String getTitle()
      Gets the layer's human-readable 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 the layer.

        The description property contains the content from the abstract field in the WFS GetCapabilities response.

        Returns:
        the description of the layer
        Since:
        100.5.0
      • getExtent

        public Envelope getExtent()
        Gets the extent of the layer.
        Returns:
        the extent of the layer
        Since:
        100.5.0
      • getKeywords

        public java.util.List<java.lang.String> getKeywords()
        Gets an unordered list of keywords used to describe the layer.
        Returns:
        an unmodifiable list of keywords
        Since:
        100.5.0
      • getName

        public java.lang.String getName()
        Gets the layer's uniquely-identifying name.

        The name property is intended for use as a unique identifier for the layer. See getTitle() for a human-readable name.

        Returns:
        the name of the layer
        Since:
        100.5.0
      • getSpatialReferences

        public java.util.List<SpatialReference> getSpatialReferences()
        Gets the supported spatial references.
        Returns:
        an unmodifiable list of spatial references supported by the layer.
        Since:
        100.5.0
      • getTitle

        public java.lang.String getTitle()
        Gets the layer's human-readable title.

        The title property is intended for use as a human-readable layer identification. See getName() for an uniquely-identifying name.

        Returns:
        the title of the layer
        Since:
        100.5.0