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