summaryrefslogtreecommitdiff
path: root/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/enums/WayPointType.java
blob: 120facaefc74f2b18e508af8f3b6a14d579d321e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.smartdevicelink.proxy.rpc.enums;

public enum WayPointType {
    ALL,
    DESTINATION,
    ;

    public static WayPointType valueForString(String value) {
        try{
            return valueOf(value);
        }catch(Exception e){
            return null;
        }
    }
}