ArcGIS Runtime SDK for iOS: AGSTimeAware.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSTimeAware.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 @class AGSTimeExtent;
20 @class AGSTimeValue;
21 
22 
23  //Required for Globals API doc
25 
33 @protocol AGSTimeAware
34 
35 #pragma mark -
36 #pragma mark properties
37 
41 @property (nullable, nonatomic, strong, readonly) AGSTimeExtent *fullTimeExtent;
42 
46 @property (nonatomic, assign, readonly) BOOL supportsTimeFiltering;
47 
52 @property (nonatomic, assign, readwrite, getter=isTimeFilteringEnabled) BOOL timeFilteringEnabled;
53 
57 @property (nullable, nonatomic, strong, readwrite) AGSTimeValue *timeOffset;
58 
63 @property (nullable, nonatomic, strong, readonly) AGSTimeValue *timeInterval;
64 
65 #pragma mark -
66 #pragma mark methods
67 
68 
69 @end
70 
71 
A protocol that can be implemented by layers that support time.
Definition: AGSTimeAware.h:33
BOOL timeFilteringEnabled
Definition: AGSTimeAware.h:52
AGSTimeValue * timeInterval
Definition: AGSTimeAware.h:63
Represents a span of time between a start time and end time.
Definition: AGSTimeExtent.h:32
BOOL supportsTimeFiltering
Definition: AGSTimeAware.h:46
AGSTimeValue * timeOffset
Definition: AGSTimeAware.h:57
AGSTimeExtent * fullTimeExtent
Definition: AGSTimeAware.h:41
Defines a period of time.
Definition: AGSTimeValue.h:50