Class ChangeTextLineItemQuantityChangeBuilder
java.lang.Object
com.commercetools.history.models.change.ChangeTextLineItemQuantityChangeBuilder
- All Implemented Interfaces:
Builder<ChangeTextLineItemQuantityChange>
public class ChangeTextLineItemQuantityChangeBuilder
extends Object
implements Builder<ChangeTextLineItemQuantityChange>
ChangeTextLineItemQuantityChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ChangeTextLineItemQuantityChange changeTextLineItemQuantityChange = ChangeTextLineItemQuantityChange.builder()
.change("{change}")
.previousValue(1)
.nextValue(1)
.textLineItem(textLineItemBuilder -> textLineItemBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds ChangeTextLineItemQuantityChange with checking for non-null required valuesbuilds ChangeTextLineItemQuantityChange without checking for non-null required valuesset the value to the changevalue of change}Value after the change.Value before the change.Holds information about the updated Text Line Item.Value after the change.of()
factory method for an instance of ChangeTextLineItemQuantityChangeBuilderof
(ChangeTextLineItemQuantityChange template) create builder for ChangeTextLineItemQuantityChange instancepreviousValue
(Integer previousValue) Value before the change.textLineItem
(TextLineItemValue textLineItem) Holds information about the updated Text Line Item.Holds information about the updated Text Line Item.Holds information about the updated Text Line Item.
-
Constructor Details
-
ChangeTextLineItemQuantityChangeBuilder
public ChangeTextLineItemQuantityChangeBuilder()
-
-
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
-
nextValue
Value after the change.
- Parameters:
nextValue
- value to be set- Returns:
- Builder
-
textLineItem
public ChangeTextLineItemQuantityChangeBuilder textLineItem(Function<TextLineItemValueBuilder, TextLineItemValueBuilder> builder) Holds information about the updated Text Line Item.
- Parameters:
builder
- function to build the textLineItem value- Returns:
- Builder
-
withTextLineItem
public ChangeTextLineItemQuantityChangeBuilder withTextLineItem(Function<TextLineItemValueBuilder, TextLineItemValue> builder) Holds information about the updated Text Line Item.
- Parameters:
builder
- function to build the textLineItem value- Returns:
- Builder
-
textLineItem
Holds information about the updated Text Line Item.
- Parameters:
textLineItem
- 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
-
getTextLineItem
Holds information about the updated Text Line Item.
- Returns:
- textLineItem
-
build
builds ChangeTextLineItemQuantityChange with checking for non-null required values- Specified by:
build
in interfaceBuilder<ChangeTextLineItemQuantityChange>
- Returns:
- ChangeTextLineItemQuantityChange
-
buildUnchecked
builds ChangeTextLineItemQuantityChange without checking for non-null required values- Returns:
- ChangeTextLineItemQuantityChange
-
of
factory method for an instance of ChangeTextLineItemQuantityChangeBuilder- Returns:
- builder
-
of
create builder for ChangeTextLineItemQuantityChange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-