Interface CellSignals.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CellSignals.Builder,CellSignals>,SdkBuilder<CellSignals.Builder,CellSignals>,SdkPojo
- Enclosing class:
- CellSignals
public static interface CellSignals.Builder extends SdkPojo, CopyableBuilder<CellSignals.Builder,CellSignals>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CellSignals.BuilderlteCellDetails(Collection<LteCellDetails> lteCellDetails)Information about the Long-Term Evolution (LTE) network the device is connected to.CellSignals.BuilderlteCellDetails(Consumer<LteCellDetails.Builder>... lteCellDetails)Information about the Long-Term Evolution (LTE) network the device is connected to.CellSignals.BuilderlteCellDetails(LteCellDetails... lteCellDetails)Information about the Long-Term Evolution (LTE) network the device is connected to.-
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
-
lteCellDetails
CellSignals.Builder lteCellDetails(Collection<LteCellDetails> lteCellDetails)
Information about the Long-Term Evolution (LTE) network the device is connected to.
- Parameters:
lteCellDetails- Information about the Long-Term Evolution (LTE) network the device is connected to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lteCellDetails
CellSignals.Builder lteCellDetails(LteCellDetails... lteCellDetails)
Information about the Long-Term Evolution (LTE) network the device is connected to.
- Parameters:
lteCellDetails- Information about the Long-Term Evolution (LTE) network the device is connected to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lteCellDetails
CellSignals.Builder lteCellDetails(Consumer<LteCellDetails.Builder>... lteCellDetails)
Information about the Long-Term Evolution (LTE) network the device is connected to.
This is a convenience method that creates an instance of theLteCellDetails.Builderavoiding the need to create one manually viaLteCellDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#lteCellDetails(List.) - Parameters:
lteCellDetails- a consumer that will call methods onLteCellDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#lteCellDetails(java.util.Collection)
-
-