ArcGIS Runtime SDK for iOS: AGSTableJoinSublayerSource.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSTableJoinSublayerSource.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  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSSublayerSource.h>
29 
30 
31 
36 typedef NS_ENUM(NSInteger, AGSJoinType) {
39  AGSJoinTypeUnknown = -1
40 };
41 
55 
56 #pragma mark -
57 #pragma mark initializers
58 
59 
60 
69 -(instancetype)initWithLeftFieldName:(NSString *)leftFieldName
70  leftSublayerSource:(AGSSublayerSource *)leftSublayerSource
71  rightFieldName:(NSString *)rightFieldName
72  rightSublayerSource:(AGSSublayerSource *)rightSublayerSource
73  joinType:(AGSJoinType)joinType;
74 
84 +(instancetype)tableJoinSublayerSourceWithLeftFieldName:(NSString *)leftFieldName
85  leftSublayerSource:(AGSSublayerSource *)leftSublayerSource
86  rightFieldName:(NSString *)rightFieldName
87  rightSublayerSource:(AGSSublayerSource *)rightSublayerSource
88  joinType:(AGSJoinType)joinType;
89 #pragma mark -
90 #pragma mark properties
91 
95 @property (nonatomic, assign, readonly) AGSJoinType joinType;
96 
100 @property (nonatomic, copy, readonly) NSString *leftFieldName;
101 
105 @property (nonatomic, strong, readonly) AGSSublayerSource *leftSublayerSource;
106 
110 @property (nonatomic, copy, readonly) NSString *rightFieldName;
111 
115 @property (nonatomic, strong, readonly) AGSSublayerSource *rightSublayerSource;
116 
117 #pragma mark -
118 #pragma mark methods
119 
120 @end
121 
122 
AGSJoinType
Definition: AGSTableJoinSublayerSource.h:36
@ AGSJoinTypeUnknown
Definition: AGSTableJoinSublayerSource.h:39
@ AGSJoinTypeInnerJoin
Definition: AGSTableJoinSublayerSource.h:37
@ AGSJoinTypeLeftOuterJoin
Definition: AGSTableJoinSublayerSource.h:38
Base class for sources of a map image sublayer.
Definition: AGSSublayerSource.h:44
A source for AGSArcGISMapImageSublayer based on a join of other sources.
Definition: AGSTableJoinSublayerSource.h:55
AGSSublayerSource * leftSublayerSource
Definition: AGSTableJoinSublayerSource.h:105
AGSJoinType joinType
Definition: AGSTableJoinSublayerSource.h:95
NSString * leftFieldName
Definition: AGSTableJoinSublayerSource.h:100
AGSSublayerSource * rightSublayerSource
Definition: AGSTableJoinSublayerSource.h:115
NSString * rightFieldName
Definition: AGSTableJoinSublayerSource.h:110