/**
* @author lgreenway
* $Id: RepeatMode.js 6376 2013-05-28 15:10:11Z lgreenway@qnx.com $
*/
module.exports = {};
/**
* @memberOf module:car.mediaplayer
* @name RepeatMode
*
* @description Repeat mode enumeration.
*
* @property REPEAT_OFF Repeat mode is off.
* @property REPEAT_ALL Repeat all tracks.
* @property REPEAT_ONE Repeat one track.
*/
Object.defineProperties(module.exports,
{
'REPEAT_OFF': { value: 0, enumerable: true, writable: false },
'REPEAT_ALL': { value: 1, enumerable: true, writable: false },
'REPEAT_ONE': { value: 2, enumerable: true, writable: false }
});