QNX CAR Platform for Infotainment 2.1 -- JavaScript API (Cordova)

/**
 * @module car.zone
 * @description Provides the zone enumeration
 *
 */
 
/* @author mlapierre
 * $Id: client.js 4326 2012-09-27 17:43:24Z mlapierre@qnx.com $
 */
 
/**
 * @static
 * @memberOf module:car.zone
 * @name Zone
 *
 * @description  <p>Zone enumeration
 * <p>This enumeration provides an list of available zones for convenience. It can be used
 * with the following APIs:
 * <ul>
 * <li>car.hvac
 * <li>car.audiomixer
 * </ul>
 * 
 * <p>Note that not all zones are present in all vehicles and that
 * zones can be different for each extension.  
 *
 * @property ALL The entire vehicle.
 * @property ROW1 The first row. 
 * @property ROW2 The second row. 
 * @property ROW3 The third row. 
 * @property ROW1_LEFT The left seat in the first row. 
 * @property ROW1_CENTER The center seat in the first row. 
 * @property ROW1_RIGHT The right seat in the first row. 
 * @property ROW2_LEFT The left seat in the second row. 
 * @property ROW2_CENTER The center seat in the second row. 
 * @property ROW2_RIGHT The right seat in the second row. 
 * @property ROW3_LEFT The left seat in the third row. 
 * @property ROW3_CENTER The center seat in the third row. 
 * @property ROW3_RIGHT The right seat in the third row.
 */ 
Object.defineProperties(module.exports,
{
	'ALL':			{ value: 'all',		enumerable: true, writable: false },
	'ROW1':			{ value: 'row1',	enumerable: true, writable: false },
	'ROW2':			{ value: 'row2',	enumerable: true, writable: false },
	'ROW3':			{ value: 'row3',	enumerable: true, writable: false },
	'ROW1_LEFT':		{ value: 'row1left',	enumerable: true, writable: false },
	'ROW1_CENTER':		{ value: 'row1center',	enumerable: true, writable: false },
	'ROW1_RIGHT':		{ value: 'row1right',	enumerable: true, writable: false },
	'ROW2_LEFT':		{ value: 'row2left',	enumerable: true, writable: false },
	'ROW2_CENTER':		{ value: 'row2center',	enumerable: true, writable: false },
	'ROW2_RIGHT':		{ value: 'row2right',	enumerable: true, writable: false },
	'ROW3_LEFT':		{ value: 'row3left',	enumerable: true, writable: false },
	'ROW3_CENTER':		{ value: 'row3center',	enumerable: true, writable: false },
	'ROW3_RIGHT':		{ value: 'row3right',	enumerable: true, writable: false },
});