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