com.commercetools.history.models.change.SetOrderTaxedPriceChangeBuilder 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;
/**
* SetOrderTaxedPriceChangeBuilder
*
* Example to create an instance using the builder pattern
*
*
* SetOrderTaxedPriceChange setOrderTaxedPriceChange = SetOrderTaxedPriceChange.builder()
* .change("{change}")
* .previousValue(previousValueBuilder -> previousValueBuilder)
* .nextValue(nextValueBuilder -> nextValueBuilder)
* .taxMode(TaxMode.PLATFORM)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class SetOrderTaxedPriceChangeBuilder implements Builder {
private String change;
private com.commercetools.history.models.common.TaxedItemPrice previousValue;
private com.commercetools.history.models.common.TaxedItemPrice nextValue;
private com.commercetools.history.models.common.TaxMode taxMode;
/**
* set the value to the change
* @param change value to be set
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder change(final String change) {
this.change = change;
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder previousValue(
Function builder) {
this.previousValue = builder.apply(com.commercetools.history.models.common.TaxedItemPriceBuilder.of()).build();
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder withPreviousValue(
Function builder) {
this.previousValue = builder.apply(com.commercetools.history.models.common.TaxedItemPriceBuilder.of());
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder previousValue(
final com.commercetools.history.models.common.TaxedItemPrice previousValue) {
this.previousValue = previousValue;
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder nextValue(
Function builder) {
this.nextValue = builder.apply(com.commercetools.history.models.common.TaxedItemPriceBuilder.of()).build();
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder withNextValue(
Function builder) {
this.nextValue = builder.apply(com.commercetools.history.models.common.TaxedItemPriceBuilder.of());
return this;
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder nextValue(
final com.commercetools.history.models.common.TaxedItemPrice nextValue) {
this.nextValue = nextValue;
return this;
}
/**
* set the value to the taxMode
* @param taxMode value to be set
* @return Builder
*/
public SetOrderTaxedPriceChangeBuilder taxMode(final com.commercetools.history.models.common.TaxMode taxMode) {
this.taxMode = taxMode;
return this;
}
/**
* value of change}
* @return change
*/
public String getChange() {
return this.change;
}
/**
* Value before the change.
* @return previousValue
*/
public com.commercetools.history.models.common.TaxedItemPrice getPreviousValue() {
return this.previousValue;
}
/**
* Value after the change.
* @return nextValue
*/
public com.commercetools.history.models.common.TaxedItemPrice getNextValue() {
return this.nextValue;
}
/**
* value of taxMode}
* @return taxMode
*/
public com.commercetools.history.models.common.TaxMode getTaxMode() {
return this.taxMode;
}
/**
* builds SetOrderTaxedPriceChange with checking for non-null required values
* @return SetOrderTaxedPriceChange
*/
public SetOrderTaxedPriceChange build() {
Objects.requireNonNull(change, SetOrderTaxedPriceChange.class + ": change is missing");
Objects.requireNonNull(previousValue, SetOrderTaxedPriceChange.class + ": previousValue is missing");
Objects.requireNonNull(nextValue, SetOrderTaxedPriceChange.class + ": nextValue is missing");
Objects.requireNonNull(taxMode, SetOrderTaxedPriceChange.class + ": taxMode is missing");
return new SetOrderTaxedPriceChangeImpl(change, previousValue, nextValue, taxMode);
}
/**
* builds SetOrderTaxedPriceChange without checking for non-null required values
* @return SetOrderTaxedPriceChange
*/
public SetOrderTaxedPriceChange buildUnchecked() {
return new SetOrderTaxedPriceChangeImpl(change, previousValue, nextValue, taxMode);
}
/**
* factory method for an instance of SetOrderTaxedPriceChangeBuilder
* @return builder
*/
public static SetOrderTaxedPriceChangeBuilder of() {
return new SetOrderTaxedPriceChangeBuilder();
}
/**
* create builder for SetOrderTaxedPriceChange instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static SetOrderTaxedPriceChangeBuilder of(final SetOrderTaxedPriceChange template) {
SetOrderTaxedPriceChangeBuilder builder = new SetOrderTaxedPriceChangeBuilder();
builder.change = template.getChange();
builder.previousValue = template.getPreviousValue();
builder.nextValue = template.getNextValue();
builder.taxMode = template.getTaxMode();
return builder;
}
}