Class AddBillingAddressIdChangeBuilder
java.lang.Object
com.commercetools.history.models.change.AddBillingAddressIdChangeBuilder
- All Implemented Interfaces:
Builder<AddBillingAddressIdChange>
public class AddBillingAddressIdChangeBuilder
extends Object
implements Builder<AddBillingAddressIdChange>
AddBillingAddressIdChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
AddBillingAddressIdChange addBillingAddressIdChange = AddBillingAddressIdChange.builder()
.change("{change}")
.plusPreviousValue(previousValueBuilder -> previousValueBuilder)
.plusNextValue(nextValueBuilder -> nextValueBuilder)
.address(addressBuilder -> addressBuilder)
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAddress added tobillingAddressIds.address(Function<AddressBuilder, AddressBuilder> builder) Address added tobillingAddressIds.build()builds AddBillingAddressIdChange with checking for non-null required valuesbuilds AddBillingAddressIdChange without checking for non-null required valuesset the value to the changeAddress added tobillingAddressIds.value of change}Value after the change.Value before the change.Value after the change.Value after the change.of()factory method for an instance of AddBillingAddressIdChangeBuilderof(AddBillingAddressIdChange template) create builder for AddBillingAddressIdChange instanceplusNextValue(String... nextValue) Value after the change.plusPreviousValue(String... previousValue) Value before the change.previousValue(String... previousValue) Value before the change.previousValue(List<String> previousValue) Value before the change.withAddress(Function<AddressBuilder, Address> builder) Address added tobillingAddressIds.
-
Constructor Details
-
AddBillingAddressIdChangeBuilder
public AddBillingAddressIdChangeBuilder()
-
-
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
-
previousValue
Value before the change.
- Parameters:
previousValue- value to be set- Returns:
- Builder
-
plusPreviousValue
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
-
nextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
plusNextValue
Value after the change.
- Parameters:
nextValue- value to be set- Returns:
- Builder
-
address
Address added to
billingAddressIds.- Parameters:
builder- function to build the address value- Returns:
- Builder
-
withAddress
Address added to
billingAddressIds.- Parameters:
builder- function to build the address value- Returns:
- Builder
-
address
Address added to
billingAddressIds.- Parameters:
address- 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
-
getAddress
Address added to
billingAddressIds.- Returns:
- address
-
build
builds AddBillingAddressIdChange with checking for non-null required values- Specified by:
buildin interfaceBuilder<AddBillingAddressIdChange>- Returns:
- AddBillingAddressIdChange
-
buildUnchecked
builds AddBillingAddressIdChange without checking for non-null required values- Returns:
- AddBillingAddressIdChange
-
of
factory method for an instance of AddBillingAddressIdChangeBuilder- Returns:
- builder
-
of
create builder for AddBillingAddressIdChange instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-