ArcGIS Runtime SDK for iOS: AGSUtilityAssociation.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSUtilityAssociation.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/AGSObject.h>
29 
30 
31 
32 @class AGSUtilityElement;
33 @class AGSGeometry;
34 
38 typedef NS_ENUM(NSInteger, AGSUtilityAssociationType) {
45 };
46 
55 
56 #pragma mark -
57 #pragma mark initializers
58 
59 
60 
61 #pragma mark -
62 #pragma mark properties
63 
67 @property (nonatomic, assign, readonly) AGSUtilityAssociationType associationType;
68 
72 @property (nonatomic, assign, readonly, getter=isContainmentVisible) BOOL containmentVisible;
73 
86 @property (nonatomic, assign, readonly) double fractionAlongEdge;
87 
92 @property (nonatomic, strong, readonly) AGSUtilityElement *fromElement;
93 
100 @property (nullable, nonatomic, strong, readonly) AGSGeometry *geometry;
101 
105 @property (nonatomic, strong, readonly) NSUUID *globalID;
106 
111 @property (nonatomic, strong, readonly) AGSUtilityElement *toElement;
112 
113 #pragma mark -
114 #pragma mark methods
115 
116 @end
117 
118 
AGSUtilityAssociationType
Definition: AGSUtilityAssociation.h:38
@ AGSUtilityAssociationTypeJunctionEdgeObjectConnectivityFromSide
Definition: AGSUtilityAssociation.h:42
@ AGSUtilityAssociationTypeJunctionEdgeObjectConnectivityToSide
Definition: AGSUtilityAssociation.h:44
@ AGSUtilityAssociationTypeAttachment
Definition: AGSUtilityAssociation.h:41
@ AGSUtilityAssociationTypeConnectivity
Definition: AGSUtilityAssociation.h:39
@ AGSUtilityAssociationTypeContainment
Definition: AGSUtilityAssociation.h:40
@ AGSUtilityAssociationTypeJunctionEdgeObjectConnectivityMidspan
Definition: AGSUtilityAssociation.h:43
Base class for all classes that represent geometric shapes.
Definition: AGSGeometry.h:121
Definition: AGSObject.h:28
A connectivity, containment, or structural attachment association.
Definition: AGSUtilityAssociation.h:55
AGSGeometry * geometry
Definition: AGSUtilityAssociation.h:100
AGSUtilityAssociationType associationType
Definition: AGSUtilityAssociation.h:67
NSUUID * globalID
Definition: AGSUtilityAssociation.h:105
BOOL containmentVisible
Definition: AGSUtilityAssociation.h:72
AGSUtilityElement * fromElement
Definition: AGSUtilityAssociation.h:92
AGSUtilityElement * toElement
Definition: AGSUtilityAssociation.h:111
double fractionAlongEdge
Definition: AGSUtilityAssociation.h:86
An entity in a utility network that corresponds to an AGSFeature object.
Definition: AGSUtilityElement.h:45