Packagecom.esri.baserver
Classpublic class TableData
InheritanceTableData Inheritance Object
Implements IJsonObject

The TableData class specifies a data table.

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

GeocodeData
StandardLevelsOfGeographyTask


Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined By
  
TableData(tableData:Object = null)
Creates a new instance of a data table.
TableData
Property Detail
addressesDataproperty
addressesData:GeocodeAddressesData

Address data for geocoding.


Implementation
    public function get addressesData():GeocodeAddressesData
    public function set addressesData(value:GeocodeAddressesData):void
featureSetproperty 
featureSet:FeatureSet

Record set.


Implementation
    public function get featureSet():FeatureSet
    public function set featureSet(value:FeatureSet):void
folderItemproperty 
folderItem:FolderItem

Folder item.


Implementation
    public function get folderItem():FolderItem
    public function set folderItem(value:FolderItem):void
urlproperty 
url:String

URL to an external table.


Implementation
    public function get url():String
    public function set url(value:String):void
Constructor Detail
TableData()Constructor
public function TableData(tableData:Object = null)

Creates a new instance of a data table.

Parameters
tableData:Object (default = null) — An instance of the GeocodeAddressesData, FeatureSet, FolderItem or String type.