ArcGIS Runtime SDK for iOS: AGSGenerateGeodatabaseParameters.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSGenerateGeodatabaseParameters.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24 
25 #import <Foundation/Foundation.h>
26 #import <ArcGIS/AGSObject.h>
27 #import <ArcGIS/AGSGeodatabaseTaskTypes.h>
28 
29 
30 
34 typedef NS_ENUM(NSInteger, AGSUtilityNetworkSyncMode) {
37 };
38 
39 @class AGSGeometry;
41 @class AGSSpatialReference;
42  //Required for Globals API doc
44 
56 
57 #pragma mark -
58 #pragma mark initializers
59 
60 +(instancetype)generateGeodatabaseParameters;
61 
62 #pragma mark -
63 #pragma mark properties
64 
68 @property (nonatomic, assign, readwrite) AGSAttachmentSyncDirection attachmentSyncDirection;
69 
73 @property (nullable, nonatomic, strong, readwrite) AGSGeometry *extent;
74 
78 @property (nonatomic, copy, readwrite) NSArray<AGSGenerateLayerOption*> *layerOptions;
79 
83 @property (nullable, nonatomic, strong, readwrite) AGSSpatialReference *outSpatialReference;
84 
88 @property (nonatomic, assign, readwrite) BOOL returnAttachments;
89 
108 @property (nonatomic, assign, readwrite) BOOL shouldSyncAnnotations;
109 
124 @property (nonatomic, assign, readwrite) BOOL shouldSyncContingentValues;
125 
139 @property (nonatomic, assign, readwrite) BOOL shouldSyncDimensions;
140 
144 @property (nonatomic, assign, readwrite) AGSSyncModel syncModel;
145 
157 @property (nonatomic, assign, readwrite) AGSUtilityNetworkSyncMode utilityNetworkSyncMode;
158 
159 #pragma mark -
160 #pragma mark methods
161 
162 
163 
164 @end
AGSUtilityNetworkSyncMode
Definition: AGSGenerateGeodatabaseParameters.h:34
@ AGSUtilityNetworkSyncModeNone
Definition: AGSGenerateGeodatabaseParameters.h:35
@ AGSUtilityNetworkSyncModeSyncSystemTables
Definition: AGSGenerateGeodatabaseParameters.h:36
AGSSyncModel
Definition: AGSGeodatabaseTaskTypes.h:57
AGSAttachmentSyncDirection
Definition: AGSGeodatabaseTaskTypes.h:35
Parameters to generate a sync-enabled geodatabase.
Definition: AGSGenerateGeodatabaseParameters.h:56
AGSGeometry * extent
Definition: AGSGenerateGeodatabaseParameters.h:73
BOOL shouldSyncDimensions
Definition: AGSGenerateGeodatabaseParameters.h:139
BOOL shouldSyncContingentValues
Definition: AGSGenerateGeodatabaseParameters.h:124
BOOL shouldSyncAnnotations
Definition: AGSGenerateGeodatabaseParameters.h:108
AGSSyncModel syncModel
Definition: AGSGenerateGeodatabaseParameters.h:144
instancetype generateGeodatabaseParameters()
AGSUtilityNetworkSyncMode utilityNetworkSyncMode
Definition: AGSGenerateGeodatabaseParameters.h:157
BOOL returnAttachments
Definition: AGSGenerateGeodatabaseParameters.h:88
AGSAttachmentSyncDirection attachmentSyncDirection
Definition: AGSGenerateGeodatabaseParameters.h:68
NSArray< AGSGenerateLayerOption * > * layerOptions
Definition: AGSGenerateGeodatabaseParameters.h:78
AGSSpatialReference * outSpatialReference
Definition: AGSGenerateGeodatabaseParameters.h:83
Options defining what data to include for a layer in a geodatabase.
Definition: AGSGenerateLayerOption.h:49
Base class for all classes that represent geometric shapes.
Definition: AGSGeometry.h:121
Definition: AGSObject.h:28
Represents the spatial reference of a geometry.
Definition: AGSSpatialReference.h:49