Interface GsmNmrObj.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GsmNmrObj.Builder,GsmNmrObj>,SdkBuilder<GsmNmrObj.Builder,GsmNmrObj>,SdkPojo
- Enclosing class:
- GsmNmrObj
public static interface GsmNmrObj.Builder extends SdkPojo, CopyableBuilder<GsmNmrObj.Builder,GsmNmrObj>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GsmNmrObj.Builderbcch(Integer bcch)GSM broadcast control channel.GsmNmrObj.Builderbsic(Integer bsic)GSM base station identity code (BSIC).default GsmNmrObj.BuilderglobalIdentity(Consumer<GlobalIdentity.Builder> globalIdentity)Global identity information of the GSM object.GsmNmrObj.BuilderglobalIdentity(GlobalIdentity globalIdentity)Global identity information of the GSM object.GsmNmrObj.BuilderrxLevel(Integer rxLevel)Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bsic
GsmNmrObj.Builder bsic(Integer bsic)
GSM base station identity code (BSIC).
- Parameters:
bsic- GSM base station identity code (BSIC).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bcch
GsmNmrObj.Builder bcch(Integer bcch)
GSM broadcast control channel.
- Parameters:
bcch- GSM broadcast control channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rxLevel
GsmNmrObj.Builder rxLevel(Integer rxLevel)
Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).
- Parameters:
rxLevel- Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
globalIdentity
GsmNmrObj.Builder globalIdentity(GlobalIdentity globalIdentity)
Global identity information of the GSM object.
- Parameters:
globalIdentity- Global identity information of the GSM object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
globalIdentity
default GsmNmrObj.Builder globalIdentity(Consumer<GlobalIdentity.Builder> globalIdentity)
Global identity information of the GSM object.
This is a convenience method that creates an instance of theGlobalIdentity.Builderavoiding the need to create one manually viaGlobalIdentity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toglobalIdentity(GlobalIdentity).- Parameters:
globalIdentity- a consumer that will call methods onGlobalIdentity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
globalIdentity(GlobalIdentity)
-
-