类 CellTower

java.lang.Object
ai.nextbillion.maps.model.CellTower
所有已实现的接口:
java.io.Serializable

public class CellTower
extends java.lang.Object
implements java.io.Serializable
A cell tower object.

The Geolocation API request body's cellTowers array contains zero or more cell tower objects.

Please see Cell Tower Object for more detail.

另请参阅:
序列化表格
  • 嵌套类概要

    嵌套类 
    修饰符和类型 说明
    static class  CellTower.CellTowerBuilder  
  • 字段概要

    字段 
    修饰符和类型 字段 说明
    java.lang.Integer age
    The number of milliseconds since this cell was primary.
    java.lang.Integer cellId
    Unique identifier of the cell (required).
    java.lang.Integer locationAreaCode
    The Location Area Code (LAC) for GSM and WCDMAnetworks or The Network ID (NID) for CDMA networks (required).
    java.lang.Integer mobileCountryCode
    The cell tower's Mobile Country Code (MCC) (required).
    java.lang.Integer mobileNetworkCode
    The cell tower's Mobile Network Code (required).
    java.lang.Integer signalStrength
    Radio signal strength measured in dBm.
    java.lang.Integer timingAdvance
    The timing advance value.
  • 构造器概要

    构造器 
    构造器 说明
    CellTower()  
  • 方法概要

    修饰符和类型 方法 说明
    java.lang.String toString()  

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 字段详细资料

    • cellId

      public java.lang.Integer cellId
      Unique identifier of the cell (required). On GSM, this is the Cell ID (CID); CDMA networks use the Base Station ID (BID). WCDMA networks use the UTRAN/GERAN Cell Identity (UC-Id), which is a 32-bit value concatenating the Radio Network Controller (RNC) and Cell ID. Specifying only the 16-bit Cell ID value in WCDMA networks may return inaccurate results.
    • locationAreaCode

      public java.lang.Integer locationAreaCode
      The Location Area Code (LAC) for GSM and WCDMAnetworks or The Network ID (NID) for CDMA networks (required).
    • mobileCountryCode

      public java.lang.Integer mobileCountryCode
      The cell tower's Mobile Country Code (MCC) (required).
    • mobileNetworkCode

      public java.lang.Integer mobileNetworkCode
      The cell tower's Mobile Network Code (required). This is the MNC for GSM and WCDMA; CDMA uses the System ID (SID).
    • age

      public java.lang.Integer age
      The number of milliseconds since this cell was primary. If age is 0, the cellId represents a current measurement.
    • signalStrength

      public java.lang.Integer signalStrength
      Radio signal strength measured in dBm.
    • timingAdvance

      public java.lang.Integer timingAdvance
      The timing advance value.
  • 构造器详细资料

  • 方法详细资料

    • toString

      public java.lang.String toString()
      覆盖:
      toString 在类中 java.lang.Object