Package com.esri.arcgisruntime.ogc.wfs
Class WfsLayerInfo
- java.lang.Object
-
- com.esri.arcgisruntime.ogc.wfs.WfsLayerInfo
-
public final class WfsLayerInfo extends 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 String
getDescription()
Gets the description of the layer.Envelope
getExtent()
Gets the extent of the layer.List<String>
getKeywords()
Gets an unordered list of keywords used to describe the layer.String
getName()
Gets the layer's uniquely-identifying name.List<SpatialReference>
getSpatialReferences()
Gets the supported spatial references.String
getTitle()
Gets the layer's human-readable title.
-
-
-
Method Detail
-
getDescription
public 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 List<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 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 List<SpatialReference> getSpatialReferences()
Gets the supported spatial references.- Returns:
- an unmodifiable list of spatial references supported by the layer.
- Since:
- 100.5.0
-
-