Interface NullCheckBoxList.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NullCheckBoxList.Builder,NullCheckBoxList>,SdkBuilder<NullCheckBoxList.Builder,NullCheckBoxList>,SdkPojo
- Enclosing class:
- NullCheckBoxList
public static interface NullCheckBoxList.Builder extends SdkPojo, CopyableBuilder<NullCheckBoxList.Builder,NullCheckBoxList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NullCheckBoxList.BuilderisEmpty(Boolean isEmpty)Specifies that an empty string is considered as a null value.NullCheckBoxList.BuilderisNegOne(Boolean isNegOne)Specifies that an integer value of -1 is considered as a null value.NullCheckBoxList.BuilderisNullString(Boolean isNullString)Specifies that a value spelling out the word 'null' is considered as a null value.-
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
-
isEmpty
NullCheckBoxList.Builder isEmpty(Boolean isEmpty)
Specifies that an empty string is considered as a null value.
- Parameters:
isEmpty- Specifies that an empty string is considered as a null value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isNullString
NullCheckBoxList.Builder isNullString(Boolean isNullString)
Specifies that a value spelling out the word 'null' is considered as a null value.
- Parameters:
isNullString- Specifies that a value spelling out the word 'null' is considered as a null value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isNegOne
NullCheckBoxList.Builder isNegOne(Boolean isNegOne)
Specifies that an integer value of -1 is considered as a null value.
- Parameters:
isNegOne- Specifies that an integer value of -1 is considered as a null value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-