/**@class android.net.WifiLinkQualityInfo
@extends android.net.LinkQualityInfo

  Class that represents useful attributes of wifi network links
  such as the upload/download throughput or error rate etc.
  @hide
*/
var WifiLinkQualityInfo = {

/**Implement the Parcelable interface.
@hide 
*/
writeToParcel : function(  ) {},

/**
@hide 
*/
createFromParcelBody : function(  ) {},

/**returns Wifi network type
@return {Number} network type or {@link android.net.LinkQualityInfo#UNKNOWN_INT}
*/
getType : function(  ) {},

/**
@hide 
*/
setType : function(  ) {},

/**returns BSSID of the access point
@return {String} the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX} or null
*/
getBssid : function(  ) {},

/**
@hide 
*/
setBssid : function(  ) {},

/**returns RSSI of the network in raw form
@return {Number} un-normalized RSSI or {@link android.net.LinkQualityInfo#UNKNOWN_INT}
*/
getRssi : function(  ) {},

/**
@hide 
*/
setRssi : function(  ) {},

/**returns number of packets transmitted without error
@return {Number} number of packets or {@link android.net.LinkQualityInfo#UNKNOWN_LONG}
*/
getTxGood : function(  ) {},

/**
@hide 
*/
setTxGood : function(  ) {},

/**returns number of transmitted packets that encountered errors
@return {Number} number of packets or {@link android.net.LinkQualityInfo#UNKNOWN_LONG}
*/
getTxBad : function(  ) {},

/**
@hide 
*/
setTxBad : function(  ) {},


};