SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / FunctionID.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 public enum FunctionID {\r
4         RESERVED,\r
5         RegisterAppInterface,\r
6         UnregisterAppInterface,\r
7         SetGlobalProperties,\r
8         ResetGlobalProperties,\r
9         AddCommand,\r
10         DeleteCommand,\r
11         AddSubMenu,\r
12         DeleteSubMenu,\r
13         CreateInteractionChoiceSet,\r
14         PerformInteraction,\r
15         DeleteInteractionChoiceSet,\r
16         Alert,\r
17         Show,\r
18         Speak,\r
19         SetMediaClockTimer,\r
20         EncodedSyncPData,\r
21         DialNumber,\r
22         PerformAudioPassThru,\r
23         EndAudioPassThru,\r
24         SubscribeButton,\r
25         UnsubscribeButton,\r
26         SubscribeVehicleData,\r
27         UnsubscribeVehicleData,\r
28         GetVehicleData,\r
29         ReadDID,\r
30         GetDTCs,\r
31         ScrollableMessage,\r
32         Slider,\r
33         ShowConstantTBT,\r
34         AlertManeuver,\r
35         UpdateTurnList,\r
36         ChangeLanguageRegistration,\r
37         GenericResponse,\r
38         PutFile,\r
39         DeleteFile,\r
40         ListFiles,\r
41         SetAppIcon,\r
42         SetDisplayLayout,\r
43         OnHMIStatus,\r
44         OnAppInterfaceUnregistered,\r
45         OnButtonEvent,\r
46         OnButtonPress,\r
47         OnVehicleData,\r
48         OnCommand,\r
49         OnEncodedSyncPData,\r
50         OnTBTClientState,\r
51         OnDriverDistraction,\r
52         OnPermissionsChange,\r
53         OnAudioPassThru,\r
54         OnLanguageChange;\r
55 \r
56     public static FunctionID valueForString(String value) {\r
57         return valueOf(value);\r
58     }\r
59 }\r