summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h
index d4f1eeee3..e41f7623b 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLDisplayType.h
@@ -1,18 +1,40 @@
// SDLDisplayType.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLEnum.h"
+/**
+ * Identifies the various display types used by SDL.
+ *
+ * This enum is avaliable since <font color=red><b>SmartDeviceLink 1.0</b></font>
+ */
@interface SDLDisplayType : SDLEnum {}
+/**
+ * Convert String to SDLDisplayType
+ * @param value String
+ * @return SDLDisplayType
+ */
+(SDLDisplayType*) valueOf:(NSString*) value;
+/*!
+ @abstract Store the enumeration of all possible SDLDisplayType
+ @result return an array that store all possible SDLDisplayType
+ */
+(NSMutableArray*) values;
+/**
+ * @abstract This display type provides a 2-line x 20 character "dot matrix" display.
+ * @result return SDLDisplayType with value of <font color=gray><i> CID </i></font>
+ */
+(SDLDisplayType*) CID;
+(SDLDisplayType*) TYPE2;
+(SDLDisplayType*) TYPE5;
+/**
+ * @abstract This display type provides an 8 inch touchscreen display.
+ * @result return SDLDisplayType with value of <font color=gray><i> NGN </i></font>
+ */
+(SDLDisplayType*) NGN;
+(SDLDisplayType*) GEN2_8_DMA;
+(SDLDisplayType*) GEN2_6_DMA;