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