Interface TLEData.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TLEData.Builder,
,TLEData> SdkBuilder<TLEData.Builder,
,TLEData> SdkPojo
- Enclosing class:
TLEData
@Mutable
@NotThreadSafe
public static interface TLEData.Builder
extends SdkPojo, CopyableBuilder<TLEData.Builder,TLEData>
-
Method Summary
Modifier and TypeMethodDescriptionFirst line of two-line element set (TLE) data.Second line of two-line element set (TLE) data.default TLEData.Builder
validTimeRange
(Consumer<TimeRange.Builder> validTimeRange) The valid time range for the TLE.validTimeRange
(TimeRange validTimeRange) The valid time range for the TLE.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, sdkFieldNameToField, sdkFields
-
Method Details
-
tleLine1
First line of two-line element set (TLE) data.
- Parameters:
tleLine1
- First line of two-line element set (TLE) data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tleLine2
Second line of two-line element set (TLE) data.
- Parameters:
tleLine2
- Second line of two-line element set (TLE) data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validTimeRange
The valid time range for the TLE. Gaps or overlap are not permitted.
- Parameters:
validTimeRange
- The valid time range for the TLE. Gaps or overlap are not permitted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validTimeRange
The valid time range for the TLE. Gaps or overlap are not permitted.
This is a convenience method that creates an instance of theTimeRange.Builder
avoiding the need to create one manually viaTimeRange.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovalidTimeRange(TimeRange)
.- Parameters:
validTimeRange
- a consumer that will call methods onTimeRange.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-