com.commercetools.history.models.change.SetDeliveryItemsChangeBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-history Show documentation
Show all versions of commercetools-sdk-java-history Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.history.models.change;
import java.util.*;
import java.util.function.Function;
import io.vrap.rmf.base.client.Builder;
import io.vrap.rmf.base.client.utils.Generated;
/**
* SetDeliveryItemsChangeBuilder
*
* Example to create an instance using the builder pattern
*
*
* SetDeliveryItemsChange setDeliveryItemsChange = SetDeliveryItemsChange.builder()
* .change("{change}")
* .plusPreviousValue(previousValueBuilder -> previousValueBuilder)
* .plusNextValue(nextValueBuilder -> nextValueBuilder)
* .deliveryId("{deliveryId}")
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class SetDeliveryItemsChangeBuilder implements Builder {
private String change;
private java.util.List previousValue;
private java.util.List nextValue;
private String deliveryId;
/**
* set the value to the change
* @param change value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder change(final String change) {
this.change = change;
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder previousValue(
final com.commercetools.history.models.common.DeliveryItem... previousValue) {
this.previousValue = new ArrayList<>(Arrays.asList(previousValue));
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder previousValue(
final java.util.List previousValue) {
this.previousValue = previousValue;
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder plusPreviousValue(
final com.commercetools.history.models.common.DeliveryItem... previousValue) {
if (this.previousValue == null) {
this.previousValue = new ArrayList<>();
}
this.previousValue.addAll(Arrays.asList(previousValue));
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder plusPreviousValue(
Function builder) {
if (this.previousValue == null) {
this.previousValue = new ArrayList<>();
}
this.previousValue.add(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()).build());
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder withPreviousValue(
Function builder) {
this.previousValue = new ArrayList<>();
this.previousValue.add(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()).build());
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder addPreviousValue(
Function builder) {
return plusPreviousValue(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()));
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder setPreviousValue(
Function builder) {
return previousValue(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()));
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder nextValue(
final com.commercetools.history.models.common.DeliveryItem... nextValue) {
this.nextValue = new ArrayList<>(Arrays.asList(nextValue));
return this;
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder nextValue(
final java.util.List nextValue) {
this.nextValue = nextValue;
return this;
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder plusNextValue(
final com.commercetools.history.models.common.DeliveryItem... nextValue) {
if (this.nextValue == null) {
this.nextValue = new ArrayList<>();
}
this.nextValue.addAll(Arrays.asList(nextValue));
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder plusNextValue(
Function builder) {
if (this.nextValue == null) {
this.nextValue = new ArrayList<>();
}
this.nextValue.add(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()).build());
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder withNextValue(
Function builder) {
this.nextValue = new ArrayList<>();
this.nextValue.add(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()).build());
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder addNextValue(
Function builder) {
return plusNextValue(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()));
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetDeliveryItemsChangeBuilder setNextValue(
Function builder) {
return nextValue(builder.apply(com.commercetools.history.models.common.DeliveryItemBuilder.of()));
}
/**
* id
of the updated Delivery.
* @param deliveryId value to be set
* @return Builder
*/
public SetDeliveryItemsChangeBuilder deliveryId(final String deliveryId) {
this.deliveryId = deliveryId;
return this;
}
/**
* value of change}
* @return change
*/
public String getChange() {
return this.change;
}
/**
* Value before the change.
* @return previousValue
*/
public java.util.List getPreviousValue() {
return this.previousValue;
}
/**
* Value after the change.
* @return nextValue
*/
public java.util.List getNextValue() {
return this.nextValue;
}
/**
* id
of the updated Delivery.
* @return deliveryId
*/
public String getDeliveryId() {
return this.deliveryId;
}
/**
* builds SetDeliveryItemsChange with checking for non-null required values
* @return SetDeliveryItemsChange
*/
public SetDeliveryItemsChange build() {
Objects.requireNonNull(change, SetDeliveryItemsChange.class + ": change is missing");
Objects.requireNonNull(previousValue, SetDeliveryItemsChange.class + ": previousValue is missing");
Objects.requireNonNull(nextValue, SetDeliveryItemsChange.class + ": nextValue is missing");
Objects.requireNonNull(deliveryId, SetDeliveryItemsChange.class + ": deliveryId is missing");
return new SetDeliveryItemsChangeImpl(change, previousValue, nextValue, deliveryId);
}
/**
* builds SetDeliveryItemsChange without checking for non-null required values
* @return SetDeliveryItemsChange
*/
public SetDeliveryItemsChange buildUnchecked() {
return new SetDeliveryItemsChangeImpl(change, previousValue, nextValue, deliveryId);
}
/**
* factory method for an instance of SetDeliveryItemsChangeBuilder
* @return builder
*/
public static SetDeliveryItemsChangeBuilder of() {
return new SetDeliveryItemsChangeBuilder();
}
/**
* create builder for SetDeliveryItemsChange instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static SetDeliveryItemsChangeBuilder of(final SetDeliveryItemsChange template) {
SetDeliveryItemsChangeBuilder builder = new SetDeliveryItemsChangeBuilder();
builder.change = template.getChange();
builder.previousValue = template.getPreviousValue();
builder.nextValue = template.getNextValue();
builder.deliveryId = template.getDeliveryId();
return builder;
}
}