| Package | com.esri.baserver |
| Class | public class TableData |
| Inheritance | TableData Object |
| Implements | IJsonObject |
In a data table, all properties are mutually exclusive. One of these properties should be specified
and others must be omitted. The addressesData property allows specifying geocoding
data table directly as an array of address records. The folderItem property allows
specifying a data table stored in the Business Analyst Server repository.
The featureSet property allows directly populating a data table with fields and records.
The url property refers to an external table.
See also
| Property | Defined By | ||
|---|---|---|---|
| addressesData : GeocodeAddressesData
Address data for geocoding. | TableData | ||
| featureSet : FeatureSet
Record set. | TableData | ||
| folderItem : FolderItem
Folder item. | TableData | ||
| url : String
URL to an external table. | TableData | ||
| Method | Defined By | ||
|---|---|---|---|
TableData(tableData:Object = null)
Creates a new instance of a data table. | TableData | ||
| addressesData | property |
addressesData:GeocodeAddressesDataAddress data for geocoding.
public function get addressesData():GeocodeAddressesData public function set addressesData(value:GeocodeAddressesData):void| featureSet | property |
featureSet:FeatureSetRecord set.
public function get featureSet():FeatureSet public function set featureSet(value:FeatureSet):void| folderItem | property |
folderItem:FolderItemFolder item.
public function get folderItem():FolderItem public function set folderItem(value:FolderItem):void| url | property |
url:StringURL to an external table.
public function get url():String public function set url(value:String):void| TableData | () | Constructor |
public function TableData(tableData:Object = null)Creates a new instance of a data table.
ParameterstableData:Object (default = null) — An instance of the GeocodeAddressesData, FeatureSet, FolderItem or String type.
|