CdmaCellLocation
public
class
CdmaCellLocation
extends CellLocation
java.lang.Object | ||
↳ | android.telephony.CellLocation | |
↳ | android.telephony.cdma.CdmaCellLocation |
This class was deprecated
in API level 31.
use CellIdentity
.
Represents the cell location on a CDMA phone.
Summary
Public constructors | |
---|---|
CdmaCellLocation()
Empty constructor. |
|
CdmaCellLocation(Bundle bundle)
Initialize the object from a bundle. |
Public methods | |
---|---|
static
double
|
convertQuartSecToDecDegrees(int quartSec)
Converts latitude or longitude from 0.25 seconds (as defined in the 3GPP2 C.S0005-A v6.0 standard) to decimal degrees |
boolean
|
equals(Object o)
Indicates whether some other object is "equal to" this one. |
void
|
fillInNotifierBundle(Bundle bundleToFill)
Fill the cell location data into the intent notifier Bundle based on service state |
int
|
getBaseStationId()
|
int
|
getBaseStationLatitude()
Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. |
int
|
getBaseStationLongitude()
Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. |
int
|
getNetworkId()
|
int
|
getSystemId()
|
int
|
hashCode()
Returns a hash code value for the object. |
void
|
setCellLocationData(int baseStationId, int baseStationLatitude, int baseStationLongitude, int systemId, int networkId)
Set the cell location data. |
void
|
setCellLocationData(int baseStationId, int baseStationLatitude, int baseStationLongitude)
Set the cell location data. |
void
|
setStateInvalid()
Invalidate this object. |
String
|
toString()
Returns a string representation of the object. |
Inherited methods | |
---|---|
Public constructors
CdmaCellLocation
public CdmaCellLocation ()
Empty constructor. Initializes the BID, SID, NID and base station latitude and longitude to invalid values.
CdmaCellLocation
public CdmaCellLocation (Bundle bundle)
Initialize the object from a bundle.
Parameters | |
---|---|
bundle |
Bundle |
Public methods
convertQuartSecToDecDegrees
public static double convertQuartSecToDecDegrees (int quartSec)
Converts latitude or longitude from 0.25 seconds (as defined in the 3GPP2 C.S0005-A v6.0 standard) to decimal degrees
Parameters | |
---|---|
quartSec |
int : latitude or longitude in 0.25 seconds units |
Returns | |
---|---|
double |
latitude or longitude in decimal degrees units |
Throws | |
---|---|
IllegalArgumentException |
if value is less than -2592000, greater than 2592000, or is not a number. |
equals
public boolean equals (Object o)
Indicates whether some other object is "equal to" this one.
The equals
method implements an equivalence relation
on non-null object references:
- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.
Parameters | |
---|---|
o |
Object : the reference object with which to compare. |
Returns | |
---|---|
boolean |
true if this object is the same as the obj
argument; false otherwise. |
fillInNotifierBundle
public void fillInNotifierBundle (Bundle bundleToFill)
Fill the cell location data into the intent notifier Bundle based on service state
Parameters | |
---|---|
bundleToFill |
Bundle : intent notifier Bundle |
getBaseStationId
public int getBaseStationId ()
Returns | |
---|---|
int |
cdma base station identification number, -1 if unknown |
getBaseStationLatitude
public int getBaseStationLatitude ()
Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. (http://www.3gpp2.org/public_html/specs/C.S0005-A_v6.0.pdf) It is represented in units of 0.25 seconds and ranges from -1296000 to 1296000, both values inclusive (corresponding to a range of -90 to +90 degrees). Integer.MAX_VALUE is considered invalid value.
Returns | |
---|---|
int |
cdma base station latitude in units of 0.25 seconds, Integer.MAX_VALUE if unknown |
getBaseStationLongitude
public int getBaseStationLongitude ()
Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0. (http://www.3gpp2.org/public_html/specs/C.S0005-A_v6.0.pdf) It is represented in units of 0.25 seconds and ranges from -2592000 to 2592000, both values inclusive (corresponding to a range of -180 to +180 degrees). Integer.MAX_VALUE is considered invalid value.
Returns | |
---|---|
int |
cdma base station longitude in units of 0.25 seconds, Integer.MAX_VALUE if unknown |
getNetworkId
public int getNetworkId ()
Returns | |
---|---|
int |
cdma network identification number, -1 if unknown |
getSystemId
public int getSystemId ()
Returns | |
---|---|
int |
cdma system identification number, -1 if unknown |
hashCode
public int hashCode ()
Returns a hash code value for the object. This method is
supported for the benefit of hash tables such as those provided by
HashMap
.
The general contract of hashCode
is:
- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
hashCode
method must consistently return the same integer, provided no information used inequals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. - If two objects are equal according to the
equals
method, then calling thehashCode
method on each of the two objects must produce the same integer result. - It is not required that if two objects are unequal
according to the
equals
method, then calling thehashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
Returns | |
---|---|
int |
a hash code value for this object. |
setCellLocationData
public void setCellLocationData (int baseStationId, int baseStationLatitude, int baseStationLongitude, int systemId, int networkId)
Set the cell location data.
Parameters | |
---|---|
baseStationId |
int |
baseStationLatitude |
int |
baseStationLongitude |
int |
systemId |
int |
networkId |
int |
setCellLocationData
public void setCellLocationData (int baseStationId, int baseStationLatitude, int baseStationLongitude)
Set the cell location data.
Parameters | |
---|---|
baseStationId |
int |
baseStationLatitude |
int |
baseStationLongitude |
int |
setStateInvalid
public void setStateInvalid ()
Invalidate this object. The cell location data is set to invalid values.
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |