ArcGIS Runtime SDK for iOS: AGSServiceTimeInfo.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSServiceTimeInfo.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 #import <ArcGIS/AGSTimeValue.h>
30 
31 
32 
37 typedef NS_ENUM(NSInteger, AGSTimeRelation) {
42 };
43 
44 @class AGSTimeReference;
45 @class AGSTimeExtent;
46 
54 
55 #pragma mark -
56 #pragma mark initializers
57 
58 
59 
60 #pragma mark -
61 #pragma mark properties
62 
63 @property (nullable, nonatomic, strong, readonly) AGSTimeValue *defaultInterval;
64 
68 @property (nonatomic, assign, readonly) NSInteger defaultTimeInterval;
69 
73 @property (nonatomic, assign, readonly) AGSTimeUnit defaultTimeIntervalUnit;
74 
78 @property (nonatomic, assign, readonly) NSInteger defaultTimeWindow;
79 
83 @property (nonatomic, assign, readonly) BOOL hasLiveData;
84 
85 @property (nullable, nonatomic, strong, readonly) AGSTimeExtent *timeExtent;
86 
90 @property (nullable, nonatomic, strong, readonly) AGSTimeReference *timeReference;
91 
95 @property (nonatomic, assign, readonly) AGSTimeRelation timeRelation;
96 
97 @property (nullable, nonatomic, strong, readonly) AGSTimeValue *timeWindow;
98 
99 #pragma mark -
100 #pragma mark methods
101 
106 -(BOOL)isEqualToServiceTimeInfo:(AGSServiceTimeInfo*)other;
107 
108 @end
109 
110 
AGSTimeRelation
Definition: AGSServiceTimeInfo.h:37
@ AGSTimeRelationAfterStartOverlapsEnd
Definition: AGSServiceTimeInfo.h:40
@ AGSTimeRelationOverlaps
Definition: AGSServiceTimeInfo.h:39
@ AGSTimeRelationOverlapsStartWithinEnd
Definition: AGSServiceTimeInfo.h:41
@ AGSTimeRelationUnknown
Definition: AGSServiceTimeInfo.h:38
AGSTimeUnit
Definition: AGSTimeValue.h:37
Definition: AGSObject.h:28
Information about an ArcGIS Server service time info.
Definition: AGSServiceTimeInfo.h:54
AGSTimeValue * timeWindow
Definition: AGSServiceTimeInfo.h:97
AGSTimeUnit defaultTimeIntervalUnit
Definition: AGSServiceTimeInfo.h:73
AGSTimeRelation timeRelation
Definition: AGSServiceTimeInfo.h:95
NSInteger defaultTimeInterval
Definition: AGSServiceTimeInfo.h:68
AGSTimeValue * defaultInterval
Definition: AGSServiceTimeInfo.h:63
NSInteger defaultTimeWindow
Definition: AGSServiceTimeInfo.h:78
BOOL hasLiveData
Definition: AGSServiceTimeInfo.h:83
AGSTimeReference * timeReference
Definition: AGSServiceTimeInfo.h:90
AGSTimeExtent * timeExtent
Definition: AGSServiceTimeInfo.h:85
Represents a span of time between a start time and end time.
Definition: AGSTimeExtent.h:42
Contains information about how the time was measured.
Definition: AGSTimeReference.h:41
Defines a period of time.
Definition: AGSTimeValue.h:58