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