Class SetAssetTagsChangeBuilder
java.lang.Object
com.commercetools.history.models.change.SetAssetTagsChangeBuilder
- All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<SetAssetTagsChange>
public class SetAssetTagsChangeBuilder
extends Object
implements io.vrap.rmf.base.client.Builder<SetAssetTagsChange>
SetAssetTagsChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SetAssetTagsChange setAssetTagsChange = SetAssetTagsChange.builder()
.change("{change}")
.plusPreviousValue(previousValueBuilder -> previousValueBuilder)
.plusNextValue(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 SetAssetTagsChange with checking for non-null required valuesbuilds SetAssetTagsChange 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.Value after the change.Value after the change.static SetAssetTagsChangeBuilderof()factory method for an instance of SetAssetTagsChangeBuilderstatic SetAssetTagsChangeBuilderof(SetAssetTagsChange template) create builder for SetAssetTagsChange instanceplusNextValue(String... nextValue) Value after the change.plusPreviousValue(String... previousValue) Value before the change.previousValue(String... previousValue) Value before the change.previousValue(List<String> previousValue) Value before the change.Information about the updated Asset.
-
Constructor Details
-
SetAssetTagsChangeBuilder
public SetAssetTagsChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change- value to be set- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
plusPreviousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
plusNextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
asset
public SetAssetTagsChangeBuilder asset(Function<AssetChangeValueBuilder, AssetChangeValueBuilder> builder) Information about the updated Asset.
- Parameters:
builder- function to build the asset value- Returns:
- Builder
-
withAsset
public SetAssetTagsChangeBuilder 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 SetAssetTagsChange with checking for non-null required values- Specified by:
buildin interfaceio.vrap.rmf.base.client.Builder<SetAssetTagsChange>- Returns:
- SetAssetTagsChange
-
buildUnchecked
builds SetAssetTagsChange without checking for non-null required values- Returns:
- SetAssetTagsChange
-
of
factory method for an instance of SetAssetTagsChangeBuilder- Returns:
- builder
-
of
create builder for SetAssetTagsChange instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-