Packagecom.esri.ags.tasks
Classpublic class ParameterValue

Represents the output parameters of several geoprocessing tasks and their properties and values.

See also

Geoprocessor
com.esri.ags.events.GeoprocessorEvent
Concepts - Geoprocessing tasks


Public Properties
 PropertyDefined by
  dataType : String
Specifies the type of data for the parameter.
ParameterValue
  paramName : String
Unique name of the parameter.
ParameterValue
  value : Object
The value of the parameter.
ParameterValue
Property detail
dataTypeproperty
public var dataType:String

Specifies the type of data for the parameter. It can have one of the following values: "GPString", "GPDouble", "GPLong", "GPBoolean", "GPDate", "GPLinearUnit", "GPDataFile", "GPRasterData", "GPRecordSet", "GPRasterDataLayer", "GPFeatureRecordSetLayer".

paramNameproperty 
public var paramName:String

Unique name of the parameter.

valueproperty 
public var value:Object

The value of the parameter. The data structure of this value depends on the dataType.

ArcGIS Server Data Type Flex Type Example
GPString String "MyString"
GPDouble Number (floating) 12.56
GPLong Number (integer) 345
GPBoolean Boolean true
GPDate Date  
GPLinearUnit <LinearUnit>  
GPDataFile <DataFile>  
GPRasterData <RasterData>  
GPRecordSet <FeatureSet>  
GPRasterDataLayer <RasterData>  
GPFeatureRecordSetLayer <FeatureSet>