/**@class android.bluetooth.BluetoothActivityEnergyInfo
 implements android.os.Parcelable

@extends java.lang.Object

 Record of energy and activity information from controller and
 underlying bt stack state.Timestamp the record with system
 time

 @hide
*/
var BluetoothActivityEnergyInfo = {

/***/
BT_STACK_STATE_INVALID : "0",
/***/
BT_STACK_STATE_STATE_ACTIVE : "1",
/***/
BT_STACK_STATE_STATE_SCANNING : "2",
/***/
BT_STACK_STATE_STATE_IDLE : "3",
/***/
CREATOR : "null",
/**
*/
toString : function(  ) {},

/**
*/
writeToParcel : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
@return {Number} bt stack reported state
*/
getBluetoothStackState : function(  ) {},

/**
@return {Number} tx time in ms
*/
getControllerTxTimeMillis : function(  ) {},

/**
@return {Number} rx time in ms
*/
getControllerRxTimeMillis : function(  ) {},

/**
@return {Number} idle time in ms
*/
getControllerIdleTimeMillis : function(  ) {},

/**product of current(mA), voltage(V) and time(ms)
@return {Number} energy used
*/
getControllerEnergyUsed : function(  ) {},

/**
@return {Number} timestamp(real time elapsed in milliseconds since boot) of record creation.
*/
getTimeStamp : function(  ) {},

/**
*/
getUidTraffic : function(  ) {},

/**
*/
setUidTraffic : function(  ) {},

/**
@return {Boolean} if the record is valid
*/
isValid : function(  ) {},


};