summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLCharacterSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLCharacterSet.h')
-rw-r--r--SmartDeviceLink/SDLCharacterSet.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLCharacterSet.h b/SmartDeviceLink/SDLCharacterSet.h
new file mode 100644
index 000000000..300afd720
--- /dev/null
+++ b/SmartDeviceLink/SDLCharacterSet.h
@@ -0,0 +1,39 @@
+// SDLCharacterSet.h
+//
+
+
+#import "SDLEnum.h"
+
+/**
+ * Character sets supported by SDL.
+ *
+ * @since SDL 1.0
+ */
+@interface SDLCharacterSet : SDLEnum {
+}
+
+/**
+ * @abstract Convert String to SDLCharacterSet
+ *
+ * @param value The value of the string to get an object for
+ *
+ * @return SDLCharacterSet
+ */
++ (SDLCharacterSet *)valueOf:(NSString *)value;
+
+/**
+ * @abstract Store the enumeration of all possible SDLCharacterSet
+ *
+ * @return an array that store all possible SDLCharacterSet
+ */
++ (NSArray *)values;
+
++ (SDLCharacterSet *)TYPE2SET;
+
++ (SDLCharacterSet *)TYPE5SET;
+
++ (SDLCharacterSet *)CID1SET;
+
++ (SDLCharacterSet *)CID2SET;
+
+@end