Package com.esri.arcgisruntime.layers
Class OgcFeatureServiceInfo
- java.lang.Object
 - 
- com.esri.arcgisruntime.layers.OgcFeatureServiceInfo
 
 
- 
public final class OgcFeatureServiceInfo extends java.lang.ObjectProvides the metadata for an "OGC API - Features" service.The metadata for an "OGC API - Features" service includes the name, title, description and lists of the feature collections it contains.
- Since:
 - 100.9.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the description of the service.java.util.List<OgcFeatureCollectionInfo>getFeatureCollectionInfos()Gets information about the feature collections provided by the service.java.lang.StringgetTitle()Gets the descriptive (human-readable) name for the service. 
 - 
 
- 
- 
Method Detail
- 
getTitle
public java.lang.String getTitle()
Gets the descriptive (human-readable) name for the service.- Returns:
 - the descriptive (human-readable) name for the service
 - Since:
 - 100.9.0
 
 
- 
getDescription
public java.lang.String getDescription()
Gets the description of the service.- Returns:
 - the description of the service
 - Since:
 - 100.9.0
 
 
- 
getFeatureCollectionInfos
public java.util.List<OgcFeatureCollectionInfo> getFeatureCollectionInfos()
Gets information about the feature collections provided by the service.This method can be used to discover the feature collections exposed by an "OGC API - Features" service in support of a browsing experience.
- Returns:
 - an unmodifiable list of OGCFeatureCollectionInfo objects
 - Since:
 - 100.9.0
 
 
 - 
 
 -