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