Class SetAssetDescriptionChangeBuilder
java.lang.Object
com.commercetools.history.models.change.SetAssetDescriptionChangeBuilder
- All Implemented Interfaces:
Builder<SetAssetDescriptionChange>
public class SetAssetDescriptionChangeBuilder
extends Object
implements Builder<SetAssetDescriptionChange>
SetAssetDescriptionChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SetAssetDescriptionChange setAssetDescriptionChange = SetAssetDescriptionChange.builder()
.change("{change}")
.previousValue(previousValueBuilder -> previousValueBuilder)
.nextValue(nextValueBuilder -> nextValueBuilder)
.asset(assetBuilder -> assetBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionasset
(AssetChangeValue asset) Information about the updated Asset.Information about the updated Asset.build()
builds SetAssetDescriptionChange with checking for non-null required valuesbuilds SetAssetDescriptionChange without checking for non-null required valuesset the value to the changegetAsset()
Information about the updated Asset.value of change}Value after the change.Value before the change.nextValue
(LocalizedString nextValue) Value after the change.Value after the change.of()
factory method for an instance of SetAssetDescriptionChangeBuilderof
(SetAssetDescriptionChange template) create builder for SetAssetDescriptionChange instancepreviousValue
(LocalizedString previousValue) Value before the change.Value before the change.Information about the updated Asset.Value after the change.Value before the change.
-
Constructor Details
-
SetAssetDescriptionChangeBuilder
public SetAssetDescriptionChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change
- value to be set- Returns:
- Builder
-
previousValue
public SetAssetDescriptionChangeBuilder previousValue(Function<LocalizedStringBuilder, LocalizedStringBuilder> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- Returns:
- Builder
-
withPreviousValue
public SetAssetDescriptionChangeBuilder withPreviousValue(Function<LocalizedStringBuilder, LocalizedString> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue
- value to be set- Returns:
- Builder
-
nextValue
public SetAssetDescriptionChangeBuilder nextValue(Function<LocalizedStringBuilder, LocalizedStringBuilder> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
withNextValue
public SetAssetDescriptionChangeBuilder withNextValue(Function<LocalizedStringBuilder, LocalizedString> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue
- value to be set- Returns:
- Builder
-
asset
public SetAssetDescriptionChangeBuilder asset(Function<AssetChangeValueBuilder, AssetChangeValueBuilder> builder) Information about the updated Asset.
- Parameters:
builder
- function to build the asset value- Returns:
- Builder
-
withAsset
public SetAssetDescriptionChangeBuilder withAsset(Function<AssetChangeValueBuilder, AssetChangeValue> builder) Information about the updated Asset.
- Parameters:
builder
- function to build the asset value- Returns:
- Builder
-
asset
Information about the updated Asset.
- Parameters:
asset
- value to be set- Returns:
- Builder
-
getChange
value of change}- Returns:
- change
-
getPreviousValue
Value before the change.
- Returns:
- previousValue
-
getNextValue
Value after the change.
- Returns:
- nextValue
-
getAsset
Information about the updated Asset.
- Returns:
- asset
-
build
builds SetAssetDescriptionChange with checking for non-null required values- Specified by:
build
in interfaceBuilder<SetAssetDescriptionChange>
- Returns:
- SetAssetDescriptionChange
-
buildUnchecked
builds SetAssetDescriptionChange without checking for non-null required values- Returns:
- SetAssetDescriptionChange
-
of
factory method for an instance of SetAssetDescriptionChangeBuilder- Returns:
- builder
-
of
create builder for SetAssetDescriptionChange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-