Class SetAssetCustomTypeChangeBuilder
java.lang.Object
com.commercetools.history.models.change.SetAssetCustomTypeChangeBuilder
- All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<SetAssetCustomTypeChange>
public class SetAssetCustomTypeChangeBuilder
extends Object
implements io.vrap.rmf.base.client.Builder<SetAssetCustomTypeChange>
SetAssetCustomTypeChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SetAssetCustomTypeChange setAssetCustomTypeChange = SetAssetCustomTypeChange.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 SetAssetCustomTypeChange with checking for non-null required valuesbuilds SetAssetCustomTypeChange 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(CustomFields nextValue) Value after the change.Value after the change.of()factory method for an instance of SetAssetCustomTypeChangeBuilderof(SetAssetCustomTypeChange template) create builder for SetAssetCustomTypeChange instancepreviousValue(CustomFields previousValue) Value before the change.Value before the change.Information about the updated Asset.withNextValue(Function<CustomFieldsBuilder, CustomFields> builder) Value after the change.Value before the change.
-
Constructor Details
-
SetAssetCustomTypeChangeBuilder
public SetAssetCustomTypeChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change- value to be set- Returns:
- Builder
-
previousValue
public SetAssetCustomTypeChangeBuilder previousValue(Function<CustomFieldsBuilder, CustomFieldsBuilder> builder) Value before the change.
- Parameters:
builder- function to build the previousValue value- Returns:
- Builder
-
withPreviousValue
public SetAssetCustomTypeChangeBuilder withPreviousValue(Function<CustomFieldsBuilder, CustomFields> 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 SetAssetCustomTypeChangeBuilder nextValue(Function<CustomFieldsBuilder, CustomFieldsBuilder> builder) Value after the change.
- Parameters:
builder- function to build the nextValue value- Returns:
- Builder
-
withNextValue
public SetAssetCustomTypeChangeBuilder withNextValue(Function<CustomFieldsBuilder, CustomFields> 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 SetAssetCustomTypeChangeBuilder asset(Function<AssetChangeValueBuilder, AssetChangeValueBuilder> builder) Information about the updated Asset.
- Parameters:
builder- function to build the asset value- Returns:
- Builder
-
withAsset
public SetAssetCustomTypeChangeBuilder 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 SetAssetCustomTypeChange with checking for non-null required values- Specified by:
buildin interfaceio.vrap.rmf.base.client.Builder<SetAssetCustomTypeChange>- Returns:
- SetAssetCustomTypeChange
-
buildUnchecked
builds SetAssetCustomTypeChange without checking for non-null required values- Returns:
- SetAssetCustomTypeChange
-
of
factory method for an instance of SetAssetCustomTypeChangeBuilder- Returns:
- builder
-
of
create builder for SetAssetCustomTypeChange instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-