package com.smartdevicelink.proxy.rpc.enums; /** * Indicates the format of the time displayed on the connected SDL unit.Format * description follows the following nomenclature:

Sp = Space

| = or

c = * character

* * @since SmartDeviceLink 1.0 */ public enum MediaClockFormat { /** *

*

* * * @since SmartDeviceLink 1.0 * */ CLOCK1, /** *

*

* * * @since SmartDeviceLink 1.0 * */ CLOCK2, /** *

*

* * * @since SmartDeviceLink 2.0 * */ CLOCK3, /** *

*

* * * @since SmartDeviceLink 1.0 */ CLOCKTEXT1, /** *

*

* * difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character * set * * @since SmartDeviceLink 1.0 */ CLOCKTEXT2, /** *

*

* * difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character * set * * * @since SmartDeviceLink 1.0 */ CLOCKTEXT3, /** *

*

* * * * @since SmartDeviceLink 2.0 */ CLOCKTEXT4; public static MediaClockFormat valueForString(String value) { try{ return valueOf(value); }catch(Exception e){ return null; } } }