Interface DataItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataItem.Builder,DataItem>,SdkBuilder<DataItem.Builder,DataItem>,SdkPojo
- Enclosing class:
- DataItem
public static interface DataItem.Builder extends SdkPojo, CopyableBuilder<DataItem.Builder,DataItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataItem.BuilderformattedValue(String formattedValue)The formatted value of the data.DataItem.BuilderoverrideFormat(String overrideFormat)The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.DataItem.BuilderoverrideFormat(Format overrideFormat)The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.DataItem.BuilderrawValue(String rawValue)The raw value of the data.-
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
-
overrideFormat
DataItem.Builder overrideFormat(String overrideFormat)
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
- Parameters:
overrideFormat- The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Format,Format
-
overrideFormat
DataItem.Builder overrideFormat(Format overrideFormat)
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
- Parameters:
overrideFormat- The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Format,Format
-
rawValue
DataItem.Builder rawValue(String rawValue)
The raw value of the data. e.g. jsmith@example.com
- Parameters:
rawValue- The raw value of the data. e.g. jsmith@example.com- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formattedValue
DataItem.Builder formattedValue(String formattedValue)
The formatted value of the data. e.g. John Smith.
- Parameters:
formattedValue- The formatted value of the data. e.g. John Smith.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-