Class ChangeAssetNameChangeBuilder
java.lang.Object
com.commercetools.history.models.change.ChangeAssetNameChangeBuilder
- All Implemented Interfaces:
Builder<ChangeAssetNameChange>
ChangeAssetNameChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ChangeAssetNameChange changeAssetNameChange = ChangeAssetNameChange.builder()
.change("{change}")
.previousValue(previousValueBuilder -> previousValueBuilder)
.nextValue(nextValueBuilder -> nextValueBuilder)
.asset(assetBuilder -> assetBuilder)
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasset(AssetChangeValue asset) Information about the updated Asset.Information about the updated Asset.build()builds ChangeAssetNameChange with checking for non-null required valuesbuilds ChangeAssetNameChange 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.static ChangeAssetNameChangeBuilderof()factory method for an instance of ChangeAssetNameChangeBuilderstatic ChangeAssetNameChangeBuilderof(ChangeAssetNameChange template) create builder for ChangeAssetNameChange 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
-
ChangeAssetNameChangeBuilder
public ChangeAssetNameChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change- value to be set- Returns:
- Builder
-
previousValue
public ChangeAssetNameChangeBuilder previousValue(Function<LocalizedStringBuilder, LocalizedStringBuilder> builder) Value before the change.
- Parameters:
builder- function to build the previousValue value- Returns:
- Builder
-
withPreviousValue
public ChangeAssetNameChangeBuilder 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 ChangeAssetNameChangeBuilder nextValue(Function<LocalizedStringBuilder, LocalizedStringBuilder> builder) Value after the change.
- Parameters:
builder- function to build the nextValue value- Returns:
- Builder
-
withNextValue
public ChangeAssetNameChangeBuilder 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 ChangeAssetNameChangeBuilder asset(Function<AssetChangeValueBuilder, AssetChangeValueBuilder> builder) Information about the updated Asset.
- Parameters:
builder- function to build the asset value- Returns:
- Builder
-
withAsset
public ChangeAssetNameChangeBuilder 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 ChangeAssetNameChange with checking for non-null required values- Specified by:
buildin interfaceBuilder<ChangeAssetNameChange>- Returns:
- ChangeAssetNameChange
-
buildUnchecked
builds ChangeAssetNameChange without checking for non-null required values- Returns:
- ChangeAssetNameChange
-
of
factory method for an instance of ChangeAssetNameChangeBuilder- Returns:
- builder
-
of
create builder for ChangeAssetNameChange instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-