java.lang.Object | ||
↳ | android.telephony.CellLocation | |
↳ | android.telephony.cdma.CdmaCellLocation |
Represents the cell location on a CDMA phone.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Empty constructor.
| |||||||||||
Initialize the object from a bundle.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Converts latitude or longitude from 0.25 seconds (as defined in the
3GPP2 C.S0005-A v6.0 standard) to decimal degrees
| |||||||||||
Compares this instance with the specified object and indicates if they
are equal.
| |||||||||||
Fill the cell location data into the intent notifier Bundle based on service state
| |||||||||||
Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
| |||||||||||
Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
| |||||||||||
Returns an integer hash code for this object.
| |||||||||||
Set the cell location data.
| |||||||||||
Set the cell location data.
| |||||||||||
Invalidate this object.
| |||||||||||
Returns a string containing a concise, human-readable description of this
object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.telephony.CellLocation
| |||||||||||
From class
java.lang.Object
|
Empty constructor. Initializes the BID, SID, NID and base station latitude and longitude to invalid values.
Converts latitude or longitude from 0.25 seconds (as defined in the 3GPP2 C.S0005-A v6.0 standard) to decimal degrees
quartSec | latitude or longitude in 0.25 seconds units |
---|
IllegalArgumentException | if value is less than -2592000, greater than 2592000, or is not a number. |
---|
Compares this instance with the specified object and indicates if they
are equal. In order to be equal, o
must represent the same object
as this instance using a class-specific comparison. The general contract
is that this comparison should be reflexive, symmetric, and transitive.
Also, no object reference other than null is equal to null.
The default implementation returns true
only if this ==
o
. See Writing a correct
equals
method
if you intend implementing your own equals
method.
The general contract for the equals
and hashCode()
methods is that if equals
returns true
for
any two objects, then hashCode()
must return the same value for
these objects. This means that subclasses of Object
usually
override either both methods or neither of them.
o | the object to compare this instance with. |
---|
true
if the specified object is equal to this Object
; false
otherwise.Fill the cell location data into the intent notifier Bundle based on service state
bundleToFill | intent notifier Bundle |
---|
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.
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 an integer hash code for this object. By contract, any two
objects for which equals(Object)
returns true
must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode
method
if you intend implementing your own hashCode
method.
Set the cell location data.
Set the cell location data.
Invalidate this object. The cell location data is set to invalid values.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString
method
if you intend implementing your own toString
method.