Class AddTransactionChangeBuilder
java.lang.Object
com.commercetools.history.models.change.AddTransactionChangeBuilder
- All Implemented Interfaces:
Builder<AddTransactionChange>
AddTransactionChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
AddTransactionChange addTransactionChange = AddTransactionChange.builder()
.change("{change}")
.nextValue(nextValueBuilder -> nextValueBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds AddTransactionChange with checking for non-null required valuesbuilds AddTransactionChange without checking for non-null required valuesset the value to the changevalue of change}Value after the change.nextValue
(Transaction nextValue) Value after the change.Value after the change.static AddTransactionChangeBuilder
of()
factory method for an instance of AddTransactionChangeBuilderstatic AddTransactionChangeBuilder
of
(AddTransactionChange template) create builder for AddTransactionChange instancewithNextValue
(Function<TransactionBuilder, Transaction> builder) Value after the change.
-
Constructor Details
-
AddTransactionChangeBuilder
public AddTransactionChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change
- value to be set- Returns:
- Builder
-
nextValue
public AddTransactionChangeBuilder nextValue(Function<TransactionBuilder, TransactionBuilder> 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
-
getChange
value of change}- Returns:
- change
-
getNextValue
Value after the change.
- Returns:
- nextValue
-
build
builds AddTransactionChange with checking for non-null required values- Specified by:
build
in interfaceBuilder<AddTransactionChange>
- Returns:
- AddTransactionChange
-
buildUnchecked
builds AddTransactionChange without checking for non-null required values- Returns:
- AddTransactionChange
-
of
factory method for an instance of AddTransactionChangeBuilder- Returns:
- builder
-
of
create builder for AddTransactionChange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-