ArcGIS Runtime SDK for iOS: AGSGenerateGeodatabaseParameters.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGenerateGeodatabaseParameters.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/AGSGeodatabaseTaskTypes.h>
21 
22 @class AGSGeometry;
24 @class AGSSpatialReference;
25  //Required for Globals API doc
27 
39 
40 
41 
42 #pragma mark -
43 #pragma mark initializers
44 
45 +(instancetype)generateGeodatabaseParameters;
46 
47 #pragma mark -
48 #pragma mark properties
49 
53 @property (nonatomic, assign, readwrite) AGSAttachmentSyncDirection attachmentSyncDirection;
54 
58 @property (nullable, nonatomic, strong, readwrite) AGSGeometry *extent;
59 
63 @property (nonatomic, copy, readwrite) NSArray<AGSGenerateLayerOption*> *layerOptions;
64 
68 @property (nullable, nonatomic, strong, readwrite) AGSSpatialReference *outSpatialReference;
69 
73 @property (nonatomic, assign, readwrite) BOOL returnAttachments;
74 
78 @property (nonatomic, assign, readwrite) AGSSyncModel syncModel;
79 
80 #pragma mark -
81 #pragma mark methods
82 
83 
84 
85 @end
86 
87 
Defines common members for all specific types of geometry.
Definition: AGSGeometry.h:106
AGSSyncModel
Definition: AGSGeodatabaseTaskTypes.h:51
AGSAttachmentSyncDirection
Definition: AGSGeodatabaseTaskTypes.h:29
AGSSyncModel syncModel
Definition: AGSGenerateGeodatabaseParameters.h:78
Represents the spatial reference of a geometry.
Definition: AGSSpatialReference.h:39
AGSSpatialReference * outSpatialReference
Definition: AGSGenerateGeodatabaseParameters.h:68
Definition: AGSObject.h:21
Parameters to generate a sync-enabled geodatabase.
Definition: AGSGenerateGeodatabaseParameters.h:38
BOOL returnAttachments
Definition: AGSGenerateGeodatabaseParameters.h:73
AGSGeometry * extent
Definition: AGSGenerateGeodatabaseParameters.h:58
AGSAttachmentSyncDirection attachmentSyncDirection
Definition: AGSGenerateGeodatabaseParameters.h:53
instancetype generateGeodatabaseParameters()
NSArray< AGSGenerateLayerOption * > * layerOptions
Definition: AGSGenerateGeodatabaseParameters.h:63
Options defining what data to include for a layer in a geodatabase.
Definition: AGSGenerateLayerOption.h:44