/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.iotwireless.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* LTE object. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LteObj implements Serializable, Cloneable, StructuredPojo { /** ** Mobile Country Code. *
*/ private Integer mcc; /** ** Mobile Network Code. *
*/ private Integer mnc; /** ** E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. *
*/ private Integer eutranCid; /** ** LTE tracking area code. *
*/ private Integer tac; /** ** LTE local identification (local ID) information. *
*/ private LteLocalId lteLocalId; /** ** LTE timing advance. *
*/ private Integer lteTimingAdvance; /** ** Signal power of the reference signal received, measured in dBm (decibel-milliwatts). *
*/ private Integer rsrp; /** ** Signal quality of the reference Signal received, measured in decibels (dB). *
*/ private Float rsrq; /** ** Parameter that determines whether the LTE object is capable of supporting NR (new radio). *
*/ private Boolean nrCapable; /** ** LTE object for network measurement reports. *
*/ private java.util.List* Mobile Country Code. *
* * @param mcc * Mobile Country Code. */ public void setMcc(Integer mcc) { this.mcc = mcc; } /** ** Mobile Country Code. *
* * @return Mobile Country Code. */ public Integer getMcc() { return this.mcc; } /** ** Mobile Country Code. *
* * @param mcc * Mobile Country Code. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withMcc(Integer mcc) { setMcc(mcc); return this; } /** ** Mobile Network Code. *
* * @param mnc * Mobile Network Code. */ public void setMnc(Integer mnc) { this.mnc = mnc; } /** ** Mobile Network Code. *
* * @return Mobile Network Code. */ public Integer getMnc() { return this.mnc; } /** ** Mobile Network Code. *
* * @param mnc * Mobile Network Code. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withMnc(Integer mnc) { setMnc(mnc); return this; } /** ** E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. *
* * @param eutranCid * E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. */ public void setEutranCid(Integer eutranCid) { this.eutranCid = eutranCid; } /** ** E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. *
* * @return E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. */ public Integer getEutranCid() { return this.eutranCid; } /** ** E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. *
* * @param eutranCid * E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withEutranCid(Integer eutranCid) { setEutranCid(eutranCid); return this; } /** ** LTE tracking area code. *
* * @param tac * LTE tracking area code. */ public void setTac(Integer tac) { this.tac = tac; } /** ** LTE tracking area code. *
* * @return LTE tracking area code. */ public Integer getTac() { return this.tac; } /** ** LTE tracking area code. *
* * @param tac * LTE tracking area code. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withTac(Integer tac) { setTac(tac); return this; } /** ** LTE local identification (local ID) information. *
* * @param lteLocalId * LTE local identification (local ID) information. */ public void setLteLocalId(LteLocalId lteLocalId) { this.lteLocalId = lteLocalId; } /** ** LTE local identification (local ID) information. *
* * @return LTE local identification (local ID) information. */ public LteLocalId getLteLocalId() { return this.lteLocalId; } /** ** LTE local identification (local ID) information. *
* * @param lteLocalId * LTE local identification (local ID) information. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withLteLocalId(LteLocalId lteLocalId) { setLteLocalId(lteLocalId); return this; } /** ** LTE timing advance. *
* * @param lteTimingAdvance * LTE timing advance. */ public void setLteTimingAdvance(Integer lteTimingAdvance) { this.lteTimingAdvance = lteTimingAdvance; } /** ** LTE timing advance. *
* * @return LTE timing advance. */ public Integer getLteTimingAdvance() { return this.lteTimingAdvance; } /** ** LTE timing advance. *
* * @param lteTimingAdvance * LTE timing advance. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withLteTimingAdvance(Integer lteTimingAdvance) { setLteTimingAdvance(lteTimingAdvance); return this; } /** ** Signal power of the reference signal received, measured in dBm (decibel-milliwatts). *
* * @param rsrp * Signal power of the reference signal received, measured in dBm (decibel-milliwatts). */ public void setRsrp(Integer rsrp) { this.rsrp = rsrp; } /** ** Signal power of the reference signal received, measured in dBm (decibel-milliwatts). *
* * @return Signal power of the reference signal received, measured in dBm (decibel-milliwatts). */ public Integer getRsrp() { return this.rsrp; } /** ** Signal power of the reference signal received, measured in dBm (decibel-milliwatts). *
* * @param rsrp * Signal power of the reference signal received, measured in dBm (decibel-milliwatts). * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withRsrp(Integer rsrp) { setRsrp(rsrp); return this; } /** ** Signal quality of the reference Signal received, measured in decibels (dB). *
* * @param rsrq * Signal quality of the reference Signal received, measured in decibels (dB). */ public void setRsrq(Float rsrq) { this.rsrq = rsrq; } /** ** Signal quality of the reference Signal received, measured in decibels (dB). *
* * @return Signal quality of the reference Signal received, measured in decibels (dB). */ public Float getRsrq() { return this.rsrq; } /** ** Signal quality of the reference Signal received, measured in decibels (dB). *
* * @param rsrq * Signal quality of the reference Signal received, measured in decibels (dB). * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withRsrq(Float rsrq) { setRsrq(rsrq); return this; } /** ** Parameter that determines whether the LTE object is capable of supporting NR (new radio). *
* * @param nrCapable * Parameter that determines whether the LTE object is capable of supporting NR (new radio). */ public void setNrCapable(Boolean nrCapable) { this.nrCapable = nrCapable; } /** ** Parameter that determines whether the LTE object is capable of supporting NR (new radio). *
* * @return Parameter that determines whether the LTE object is capable of supporting NR (new radio). */ public Boolean getNrCapable() { return this.nrCapable; } /** ** Parameter that determines whether the LTE object is capable of supporting NR (new radio). *
* * @param nrCapable * Parameter that determines whether the LTE object is capable of supporting NR (new radio). * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withNrCapable(Boolean nrCapable) { setNrCapable(nrCapable); return this; } /** ** Parameter that determines whether the LTE object is capable of supporting NR (new radio). *
* * @return Parameter that determines whether the LTE object is capable of supporting NR (new radio). */ public Boolean isNrCapable() { return this.nrCapable; } /** ** LTE object for network measurement reports. *
* * @return LTE object for network measurement reports. */ public java.util.List* LTE object for network measurement reports. *
* * @param lteNmr * LTE object for network measurement reports. */ public void setLteNmr(java.util.Collection* LTE object for network measurement reports. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setLteNmr(java.util.Collection)} or {@link #withLteNmr(java.util.Collection)} if you want to override the * existing values. *
* * @param lteNmr * LTE object for network measurement reports. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withLteNmr(LteNmrObj... lteNmr) { if (this.lteNmr == null) { setLteNmr(new java.util.ArrayList* LTE object for network measurement reports. *
* * @param lteNmr * LTE object for network measurement reports. * @return Returns a reference to this object so that method calls can be chained together. */ public LteObj withLteNmr(java.util.Collection