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