Package com.esri.arcgisruntime.layers
Class TableSublayerSource
- java.lang.Object
-
- com.esri.arcgisruntime.layers.SublayerSource
-
- com.esri.arcgisruntime.layers.TableSublayerSource
-
public final class TableSublayerSource extends SublayerSource
Table sublayer source is a table, feature class, or raster that resides in a workspace that has been registered with a service that supports Dynamic Layers. The workspace can be either a folder; for example a shapefile folder, or a geodatabase; for example a File Geodatabase or Enterprise Geodatabase.- Since:
- 100.1.0
-
-
Constructor Summary
Constructors Constructor Description TableSublayerSource(java.lang.String workspaceId, java.lang.String dataSourceName)Create a table sublayer source from a workspace ID and a data source name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDataSourceName()Gets the data source name.java.lang.StringgetGeodatabaseVersion()Gets the geodatabase version.java.lang.StringgetWorkspaceId()Gets the workspace ID.voidsetGeodatabaseVersion(java.lang.String geodatabaseVersion)Sets the geodatabase version.
-
-
-
Constructor Detail
-
TableSublayerSource
public TableSublayerSource(java.lang.String workspaceId, java.lang.String dataSourceName)Create a table sublayer source from a workspace ID and a data source name.- Parameters:
workspaceId- the workspace IDdataSourceName- the data source name- Throws:
java.lang.IllegalArgumentException- if workspaceId is null or emptyjava.lang.IllegalArgumentException- if dataSourceName is null or empty- Since:
- 100.1.0
-
-
Method Detail
-
getWorkspaceId
public java.lang.String getWorkspaceId()
Gets the workspace ID.- Returns:
- the workspace ID
- Since:
- 100.1.0
-
getDataSourceName
public java.lang.String getDataSourceName()
Gets the data source name.- Returns:
- the data source name
- Since:
- 100.1.0
-
setGeodatabaseVersion
public void setGeodatabaseVersion(java.lang.String geodatabaseVersion)
Sets the geodatabase version. Null or empty value is allowed.- Parameters:
geodatabaseVersion- the geodatabase version- Since:
- 100.1.0
-
getGeodatabaseVersion
public java.lang.String getGeodatabaseVersion()
Gets the geodatabase version.- Returns:
- the geodatabase version
- Since:
- 100.1.0
-
-