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