Merge "Update Docstrings for CellSignalStrengthLte"

am: 5e8a5d4b79

Change-Id: Id41fb2ccdeaf43fcc62193c78c93f4ca765d2fa2
This commit is contained in:
Nathan Harold
2018-07-02 16:07:37 -07:00
committed by android-build-merger

View File

@@ -121,6 +121,8 @@ public final class CellSignalStrengthLte extends CellSignalStrength implements P
/** /**
* Get reference signal received quality * Get reference signal received quality
*
* @return the RSRQ if available or Integer.MAX_VALUE if unavailable.
*/ */
public int getRsrq() { public int getRsrq() {
return mRsrq; return mRsrq;
@@ -128,13 +130,17 @@ public final class CellSignalStrengthLte extends CellSignalStrength implements P
/** /**
* Get reference signal signal-to-noise ratio * Get reference signal signal-to-noise ratio
*
* @return the RSSNR if available or Integer.MAX_VALUE if unavailable.
*/ */
public int getRssnr() { public int getRssnr() {
return mRssnr; return mRssnr;
} }
/** /**
* Get reference signal received power * Get reference signal received power in dBm
*
* @return the RSRP of the measured cell.
*/ */
public int getRsrp() { public int getRsrp() {
return mRsrp; return mRsrp;
@@ -142,13 +148,17 @@ public final class CellSignalStrengthLte extends CellSignalStrength implements P
/** /**
* Get channel quality indicator * Get channel quality indicator
*
* @return the CQI if available or Integer.MAX_VALUE if unavailable.
*/ */
public int getCqi() { public int getCqi() {
return mCqi; return mCqi;
} }
/** /**
* Get signal strength as dBm * Get signal strength in dBm
*
* @return the RSRP of the measured cell.
*/ */
@Override @Override
public int getDbm() { public int getDbm() {
@@ -175,7 +185,8 @@ public final class CellSignalStrengthLte extends CellSignalStrength implements P
* Get the timing advance value for LTE, as a value in range of 0..1282. * Get the timing advance value for LTE, as a value in range of 0..1282.
* Integer.MAX_VALUE is reported when there is no active RRC * Integer.MAX_VALUE is reported when there is no active RRC
* connection. Refer to 3GPP 36.213 Sec 4.2.3 * connection. Refer to 3GPP 36.213 Sec 4.2.3
* @return the LTE timing advance, if available. *
* @return the LTE timing advance if available or Integer.MAX_VALUE if unavailable.
*/ */
public int getTimingAdvance() { public int getTimingAdvance() {
return mTimingAdvance; return mTimingAdvance;