summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLComponentVolumeStatus.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
commitfb8e9903a323acaf5fc78819bb3c203567542ab2 (patch)
treee40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLComponentVolumeStatus.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLComponentVolumeStatus.h')
-rw-r--r--SmartDeviceLink/SDLComponentVolumeStatus.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLComponentVolumeStatus.h b/SmartDeviceLink/SDLComponentVolumeStatus.h
new file mode 100644
index 000000000..8df22663c
--- /dev/null
+++ b/SmartDeviceLink/SDLComponentVolumeStatus.h
@@ -0,0 +1,64 @@
+// SDLComponentVolumeStatus.h
+//
+
+
+#import "SDLEnum.h"
+
+/**
+ * The volume status of a vehicle component.
+ *
+ * @since SDL 2.0
+ */
+@interface SDLComponentVolumeStatus : SDLEnum {
+}
+
+/**
+ * @abstract Convert String to SDLComponentVolumeStatus
+ * @param value The value of the string to get an object for
+ * @return SDLComponentVolumeStatus
+ */
++ (SDLComponentVolumeStatus *)valueOf:(NSString *)value;
+
+/**
+ * @abstract Store the enumeration of all possible SDLComponentVolumeStatus
+ * @return An array that store all possible SDLComponentVolumeStatus
+ */
++ (NSArray *)values;
+
+/**
+ * @abstract Unknown SDLComponentVolumeStatus
+ * @return a SDLComponentVolumeStatus with the value of *UNKNOWN*
+ */
++ (SDLComponentVolumeStatus *)UNKNOWN;
+
+/**
+ * @abstract Normal SDLComponentVolumeStatus
+ * @return a SDLComponentVolumeStatus with the value of *NORMAL*
+ */
++ (SDLComponentVolumeStatus *)NORMAL;
+
+/**
+ * @abstract Low SDLComponentVolumeStatus
+ * @return a SDLComponentVolumeStatus with the value of *LOW*
+ */
++ (SDLComponentVolumeStatus *)LOW;
+
+/**
+ * @abstract Fault SDLComponentVolumeStatus
+ * @return a SDLComponentVolumeStatus with the value of *FAULT*
+ */
++ (SDLComponentVolumeStatus *)FAULT;
+
+/**
+ * @abstract Alert SDLComponentVolumeStatus
+ * @return a SDLComponentVolumeStatus with the value of *ALERT*
+ */
++ (SDLComponentVolumeStatus *)ALERT;
+
+/**
+ * @abstract Not supported SDLComponentVolumeStatus
+ * @return a SDLComponentVolumeStatus with the value of *NOT_SUPPORTED*
+ */
++ (SDLComponentVolumeStatus *)NOT_SUPPORTED;
+
+@end