Interface NullValueField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NullValueField.Builder,NullValueField>,SdkBuilder<NullValueField.Builder,NullValueField>,SdkPojo
- Enclosing class:
- NullValueField
public static interface NullValueField.Builder extends SdkPojo, CopyableBuilder<NullValueField.Builder,NullValueField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default NullValueField.Builderdatatype(Consumer<Datatype.Builder> datatype)The datatype of the value.NullValueField.Builderdatatype(Datatype datatype)The datatype of the value.NullValueField.Buildervalue(String value)The value of the null placeholder.-
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
-
value
NullValueField.Builder value(String value)
The value of the null placeholder.
- Parameters:
value- The value of the null placeholder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datatype
NullValueField.Builder datatype(Datatype datatype)
The datatype of the value.
- Parameters:
datatype- The datatype of the value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datatype
default NullValueField.Builder datatype(Consumer<Datatype.Builder> datatype)
The datatype of the value.
This is a convenience method that creates an instance of theDatatype.Builderavoiding the need to create one manually viaDatatype.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todatatype(Datatype).- Parameters:
datatype- a consumer that will call methods onDatatype.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
datatype(Datatype)
-
-