/**@class android.os.BatteryStats.Uid.Pkg.Serv
@extends java.lang.Object

 The statistics associated with a particular service.
*/
var Serv = {

/**Returns the amount of time spent started.
@param {Number} batteryUptime elapsed uptime on battery in microseconds.
@param {Number} which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
@return {Number} 
*/
getStartTime : function(  ) {},

/**Returns the total number of times startService() has been called.
@param {Number} which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
*/
getStarts : function(  ) {},

/**Returns the total number times the service has been launched.
@param {Number} which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
*/
getLaunches : function(  ) {},


};