SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / MaintenanceModeStatus.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 public enum MaintenanceModeStatus {\r
4         NORMAL,\r
5         NEAR,\r
6         ACTIVE,\r
7         FEATURE_NOT_PRESENT;\r
8 \r
9     public static MaintenanceModeStatus valueForString(String value) {\r
10         return valueOf(value);\r
11     }\r
12 }\r