Interface DefaultDateTimePickerControlOptions.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DefaultDateTimePickerControlOptions.Builder,DefaultDateTimePickerControlOptions>
,SdkBuilder<DefaultDateTimePickerControlOptions.Builder,DefaultDateTimePickerControlOptions>
,SdkPojo
- Enclosing class:
- DefaultDateTimePickerControlOptions
public static interface DefaultDateTimePickerControlOptions.Builder extends SdkPojo, CopyableBuilder<DefaultDateTimePickerControlOptions.Builder,DefaultDateTimePickerControlOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DefaultDateTimePickerControlOptions.Builder
commitMode(String commitMode)
The visibility configuration of the Apply button on aDateTimePickerControl
.DefaultDateTimePickerControlOptions.Builder
commitMode(CommitMode commitMode)
The visibility configuration of the Apply button on aDateTimePickerControl
.default DefaultDateTimePickerControlOptions.Builder
displayOptions(Consumer<DateTimePickerControlDisplayOptions.Builder> displayOptions)
The display options of a control.DefaultDateTimePickerControlOptions.Builder
displayOptions(DateTimePickerControlDisplayOptions displayOptions)
The display options of a control.DefaultDateTimePickerControlOptions.Builder
type(String type)
The date time picker type of theDefaultDateTimePickerControlOptions
.DefaultDateTimePickerControlOptions.Builder
type(SheetControlDateTimePickerType type)
The date time picker type of theDefaultDateTimePickerControlOptions
.-
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 Detail
-
type
DefaultDateTimePickerControlOptions.Builder type(String type)
The date time picker type of the
DefaultDateTimePickerControlOptions
. Choose one of the following options:-
SINGLE_VALUED
: The filter condition is a fixed date. -
DATE_RANGE
: The filter condition is a date time range.
- Parameters:
type
- The date time picker type of theDefaultDateTimePickerControlOptions
. Choose one of the following options:-
SINGLE_VALUED
: The filter condition is a fixed date. -
DATE_RANGE
: The filter condition is a date time range.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlDateTimePickerType
,SheetControlDateTimePickerType
-
-
type
DefaultDateTimePickerControlOptions.Builder type(SheetControlDateTimePickerType type)
The date time picker type of the
DefaultDateTimePickerControlOptions
. Choose one of the following options:-
SINGLE_VALUED
: The filter condition is a fixed date. -
DATE_RANGE
: The filter condition is a date time range.
- Parameters:
type
- The date time picker type of theDefaultDateTimePickerControlOptions
. Choose one of the following options:-
SINGLE_VALUED
: The filter condition is a fixed date. -
DATE_RANGE
: The filter condition is a date time range.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlDateTimePickerType
,SheetControlDateTimePickerType
-
-
displayOptions
DefaultDateTimePickerControlOptions.Builder displayOptions(DateTimePickerControlDisplayOptions displayOptions)
The display options of a control.
- Parameters:
displayOptions
- The display options of a control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
default DefaultDateTimePickerControlOptions.Builder displayOptions(Consumer<DateTimePickerControlDisplayOptions.Builder> displayOptions)
The display options of a control.
This is a convenience method that creates an instance of theDateTimePickerControlDisplayOptions.Builder
avoiding the need to create one manually viaDateTimePickerControlDisplayOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todisplayOptions(DateTimePickerControlDisplayOptions)
.- Parameters:
displayOptions
- a consumer that will call methods onDateTimePickerControlDisplayOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayOptions(DateTimePickerControlDisplayOptions)
-
commitMode
DefaultDateTimePickerControlOptions.Builder commitMode(String commitMode)
The visibility configuration of the Apply button on a
DateTimePickerControl
.- Parameters:
commitMode
- The visibility configuration of the Apply button on aDateTimePickerControl
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CommitMode
,CommitMode
-
commitMode
DefaultDateTimePickerControlOptions.Builder commitMode(CommitMode commitMode)
The visibility configuration of the Apply button on a
DateTimePickerControl
.- Parameters:
commitMode
- The visibility configuration of the Apply button on aDateTimePickerControl
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CommitMode
,CommitMode
-
-