Class SetDistributionChannelsChangeBuilder
java.lang.Object
com.commercetools.history.models.change.SetDistributionChannelsChangeBuilder
- All Implemented Interfaces:
Builder<SetDistributionChannelsChange>
public class SetDistributionChannelsChangeBuilder
extends Object
implements Builder<SetDistributionChannelsChange>
SetDistributionChannelsChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SetDistributionChannelsChange setDistributionChannelsChange = SetDistributionChannelsChange.builder()
.change("{change}")
.plusPreviousValue(previousValueBuilder -> previousValueBuilder)
.plusNextValue(nextValueBuilder -> nextValueBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddNextValue
(Function<ReferenceBuilder, Reference> builder) Value after the change.addPreviousValue
(Function<ReferenceBuilder, Reference> builder) Value before the change.build()
builds SetDistributionChannelsChange with checking for non-null required valuesbuilds SetDistributionChannelsChange without checking for non-null required valuesset the value to the changevalue 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 SetDistributionChannelsChangeBuilderof
(SetDistributionChannelsChange template) create builder for SetDistributionChannelsChange instanceplusNextValue
(Reference... nextValue) Value after the change.Value after the change.plusPreviousValue
(Reference... previousValue) Value before the change.Value before the change.previousValue
(Reference... previousValue) Value before the change.previousValue
(List<Reference> previousValue) Value before the change.setNextValue
(Function<ReferenceBuilder, Reference> builder) Value after the change.setPreviousValue
(Function<ReferenceBuilder, Reference> builder) Value before the change.Value after the change.Value before the change.
-
Constructor Details
-
SetDistributionChannelsChangeBuilder
public SetDistributionChannelsChangeBuilder()
-
-
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
-
plusPreviousValue
public SetDistributionChannelsChangeBuilder plusPreviousValue(Function<ReferenceBuilder, ReferenceBuilder> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- Returns:
- Builder
-
withPreviousValue
public SetDistributionChannelsChangeBuilder withPreviousValue(Function<ReferenceBuilder, ReferenceBuilder> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- Returns:
- Builder
-
addPreviousValue
public SetDistributionChannelsChangeBuilder addPreviousValue(Function<ReferenceBuilder, Reference> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- Returns:
- Builder
-
setPreviousValue
public SetDistributionChannelsChangeBuilder setPreviousValue(Function<ReferenceBuilder, Reference> builder) Value before the change.
- Parameters:
builder
- function to build the previousValue value- 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
-
plusNextValue
public SetDistributionChannelsChangeBuilder plusNextValue(Function<ReferenceBuilder, ReferenceBuilder> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
withNextValue
public SetDistributionChannelsChangeBuilder withNextValue(Function<ReferenceBuilder, ReferenceBuilder> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
addNextValue
public SetDistributionChannelsChangeBuilder addNextValue(Function<ReferenceBuilder, Reference> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
setNextValue
public SetDistributionChannelsChangeBuilder setNextValue(Function<ReferenceBuilder, Reference> builder) Value after the change.
- Parameters:
builder
- function to build the nextValue value- Returns:
- Builder
-
getChange
value of change}- Returns:
- change
-
getPreviousValue
Value before the change.
- Returns:
- previousValue
-
getNextValue
Value after the change.
- Returns:
- nextValue
-
build
builds SetDistributionChannelsChange with checking for non-null required values- Specified by:
build
in interfaceBuilder<SetDistributionChannelsChange>
- Returns:
- SetDistributionChannelsChange
-
buildUnchecked
builds SetDistributionChannelsChange without checking for non-null required values- Returns:
- SetDistributionChannelsChange
-
of
factory method for an instance of SetDistributionChannelsChangeBuilder- Returns:
- builder
-
of
create builder for SetDistributionChannelsChange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-