ArcGIS Runtime SDK for iOS: AGSGeoprocessingParameters.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeoprocessingParameters.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSObject.h>
20 #import <ArcGIS/AGSGeoprocessingTypes.h>
21 
23 @class AGSSpatialReference;
24  //Required for Globals API doc
26 
35 
36 
37 #pragma mark -
38 #pragma mark initializers
39 
40 
41 
46 -(instancetype)initWithExecutionType:(AGSGeoprocessingExecutionType)executionType;
47 
52 +(instancetype)geoprocessingParametersWithExecutionType:(AGSGeoprocessingExecutionType)executionType;
53 
54 #pragma mark -
55 #pragma mark properties
56 
60 @property (nonatomic, assign, readonly) AGSGeoprocessingExecutionType executionType;
61 
65 @property (nonatomic, copy, readwrite) NSDictionary<NSString*,AGSGeoprocessingParameter*> *inputs;
66 
70 @property (nullable, nonatomic, strong, readwrite) AGSSpatialReference *outputSpatialReference;
71 
75 @property (nullable, nonatomic, strong, readwrite) AGSSpatialReference *processSpatialReference;
76 
80 @property (nonatomic, assign, readwrite) BOOL returnM;
81 
85 @property (nonatomic, assign, readwrite) BOOL returnZ;
86 
87 
88 @end
BOOL returnM
Definition: AGSGeoprocessingParameters.h:80
BOOL returnZ
Definition: AGSGeoprocessingParameters.h:85
Represents the spatial reference of a geometry.
Definition: AGSSpatialReference.h:39
NSDictionary< NSString *, AGSGeoprocessingParameter * > * inputs
Definition: AGSGeoprocessingParameters.h:65
AGSGeoprocessingExecutionType executionType
Definition: AGSGeoprocessingParameters.h:60
AGSSpatialReference * outputSpatialReference
Definition: AGSGeoprocessingParameters.h:70
Definition: AGSObject.h:21
Input parameters for a geoprocessing job.
Definition: AGSGeoprocessingParameters.h:34
AGSGeoprocessingExecutionType
Definition: AGSGeoprocessingTypes.h:47
AGSSpatialReference * processSpatialReference
Definition: AGSGeoprocessingParameters.h:75
A base class for geoprocessing parameters.
Definition: AGSGeoprocessingParameter.h:30