Class SetCustomLineItemTotalPriceChangeBuilder
java.lang.Object
com.commercetools.history.models.change.SetCustomLineItemTotalPriceChangeBuilder
- All Implemented Interfaces:
Builder<SetCustomLineItemTotalPriceChange>
public class SetCustomLineItemTotalPriceChangeBuilder
extends Object
implements Builder<SetCustomLineItemTotalPriceChange>
SetCustomLineItemTotalPriceChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SetCustomLineItemTotalPriceChange setCustomLineItemTotalPriceChange = SetCustomLineItemTotalPriceChange.builder()
.change("{change}")
.previousValue(previousValueBuilder -> previousValueBuilder)
.nextValue(nextValueBuilder -> nextValueBuilder)
.customLineItem(customLineItemBuilder -> customLineItemBuilder)
.customLineItemId("{customLineItemId}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds SetCustomLineItemTotalPriceChange with checking for non-null required valuesbuilds SetCustomLineItemTotalPriceChange without checking for non-null required valuesset the value to the changecustomLineItem
(LocalizedString customLineItem) Name of the updated CustomLineItem.Name of the updated CustomLineItem.customLineItemId
(String customLineItemId) id
of the updated CustomLineItem.value of change}Name of the updated CustomLineItem.id
of the updated CustomLineItem.Value after the change.Value before the change.Value after the change.nextValue
(Function<MoneyBuilder, MoneyBuilder> builder) Value after the change.of()
factory method for an instance of SetCustomLineItemTotalPriceChangeBuilderof
(SetCustomLineItemTotalPriceChange template) create builder for SetCustomLineItemTotalPriceChange instancepreviousValue
(Money previousValue) Value before the change.previousValue
(Function<MoneyBuilder, MoneyBuilder> builder) Value before the change.Name of the updated CustomLineItem.withNextValue
(Function<MoneyBuilder, Money> builder) Value after the change.withPreviousValue
(Function<MoneyBuilder, Money> builder) Value before the change.
-
Constructor Details
-
SetCustomLineItemTotalPriceChangeBuilder
public SetCustomLineItemTotalPriceChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change
- value to be set- Returns:
- Builder
-
previousValue
public SetCustomLineItemTotalPriceChangeBuilder previousValue(Function<MoneyBuilder, MoneyBuilder> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- Returns:
- Builder
-
withPreviousValue
public SetCustomLineItemTotalPriceChangeBuilder withPreviousValue(Function<MoneyBuilder, Money> 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 SetCustomLineItemTotalPriceChangeBuilder nextValue(Function<MoneyBuilder, MoneyBuilder> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
withNextValue
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
-
customLineItem
public SetCustomLineItemTotalPriceChangeBuilder customLineItem(Function<LocalizedStringBuilder, LocalizedStringBuilder> builder) Name of the updated CustomLineItem.
- Parameters:
builder
- function to build the customLineItem value- Returns:
- Builder
-
withCustomLineItem
public SetCustomLineItemTotalPriceChangeBuilder withCustomLineItem(Function<LocalizedStringBuilder, LocalizedString> builder) Name of the updated CustomLineItem.
- Parameters:
builder
- function to build the customLineItem value- Returns:
- Builder
-
customLineItem
Name of the updated CustomLineItem.
- Parameters:
customLineItem
- value to be set- Returns:
- Builder
-
customLineItemId
id
of the updated CustomLineItem.- Parameters:
customLineItemId
- 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
-
getCustomLineItem
Name of the updated CustomLineItem.
- Returns:
- customLineItem
-
getCustomLineItemId
id
of the updated CustomLineItem.- Returns:
- customLineItemId
-
build
builds SetCustomLineItemTotalPriceChange with checking for non-null required values- Specified by:
build
in interfaceBuilder<SetCustomLineItemTotalPriceChange>
- Returns:
- SetCustomLineItemTotalPriceChange
-
buildUnchecked
builds SetCustomLineItemTotalPriceChange without checking for non-null required values- Returns:
- SetCustomLineItemTotalPriceChange
-
of
factory method for an instance of SetCustomLineItemTotalPriceChangeBuilder- Returns:
- builder
-
of
public static SetCustomLineItemTotalPriceChangeBuilder of(SetCustomLineItemTotalPriceChange template) create builder for SetCustomLineItemTotalPriceChange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-