Initial Ford commit with Core and Proxies
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / trace / enums / DetailLevel.java
1 //
2 // Copyright (c) 2013 Ford Motor Company
3 //
4 package com.smartdevicelink.trace.enums;
5
6 public enum DetailLevel {
7         OFF, 
8         TERSE, 
9         VERBOSE;
10
11     public static DetailLevel valueForString(String value) {
12         return valueOf(value);
13     }
14 }