com.commercetools.history.models.change.SetLineItemTaxRateChangeBuilder 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;
/**
* SetLineItemTaxRateChangeBuilder
*
* Example to create an instance using the builder pattern
*
*
* SetLineItemTaxRateChange setLineItemTaxRateChange = SetLineItemTaxRateChange.builder()
* .change("{change}")
* .previousValue(previousValueBuilder -> previousValueBuilder)
* .nextValue(nextValueBuilder -> nextValueBuilder)
* .lineItem(lineItemBuilder -> lineItemBuilder)
* .variant("{variant}")
* .taxMode(TaxMode.PLATFORM)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class SetLineItemTaxRateChangeBuilder implements Builder {
private String change;
private com.commercetools.history.models.common.TaxRate previousValue;
private com.commercetools.history.models.common.TaxRate nextValue;
private com.commercetools.history.models.common.LocalizedString lineItem;
private String variant;
private com.commercetools.history.models.common.TaxMode taxMode;
/**
* set the value to the change
* @param change value to be set
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder change(final String change) {
this.change = change;
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder previousValue(
Function builder) {
this.previousValue = builder.apply(com.commercetools.history.models.common.TaxRateBuilder.of()).build();
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder withPreviousValue(
Function builder) {
this.previousValue = builder.apply(com.commercetools.history.models.common.TaxRateBuilder.of());
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder previousValue(
final com.commercetools.history.models.common.TaxRate previousValue) {
this.previousValue = previousValue;
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder nextValue(
Function builder) {
this.nextValue = builder.apply(com.commercetools.history.models.common.TaxRateBuilder.of()).build();
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder withNextValue(
Function builder) {
this.nextValue = builder.apply(com.commercetools.history.models.common.TaxRateBuilder.of());
return this;
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder nextValue(final com.commercetools.history.models.common.TaxRate nextValue) {
this.nextValue = nextValue;
return this;
}
/**
* Name of the Product the Line Item is based on.
* @param builder function to build the lineItem value
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder lineItem(
Function builder) {
this.lineItem = builder.apply(com.commercetools.history.models.common.LocalizedStringBuilder.of()).build();
return this;
}
/**
* Name of the Product the Line Item is based on.
* @param builder function to build the lineItem value
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder withLineItem(
Function builder) {
this.lineItem = builder.apply(com.commercetools.history.models.common.LocalizedStringBuilder.of());
return this;
}
/**
* Name of the Product the Line Item is based on.
* @param lineItem value to be set
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder lineItem(
final com.commercetools.history.models.common.LocalizedString lineItem) {
this.lineItem = lineItem;
return this;
}
/**
* sku
or key
of the ProductVariant.
* @param variant value to be set
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder variant(final String variant) {
this.variant = variant;
return this;
}
/**
* "External"
* @param taxMode value to be set
* @return Builder
*/
public SetLineItemTaxRateChangeBuilder 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.TaxRate getPreviousValue() {
return this.previousValue;
}
/**
* Value after the change.
* @return nextValue
*/
public com.commercetools.history.models.common.TaxRate getNextValue() {
return this.nextValue;
}
/**
* Name of the Product the Line Item is based on.
* @return lineItem
*/
public com.commercetools.history.models.common.LocalizedString getLineItem() {
return this.lineItem;
}
/**
* sku
or key
of the ProductVariant.
* @return variant
*/
public String getVariant() {
return this.variant;
}
/**
* "External"
* @return taxMode
*/
public com.commercetools.history.models.common.TaxMode getTaxMode() {
return this.taxMode;
}
/**
* builds SetLineItemTaxRateChange with checking for non-null required values
* @return SetLineItemTaxRateChange
*/
public SetLineItemTaxRateChange build() {
Objects.requireNonNull(change, SetLineItemTaxRateChange.class + ": change is missing");
Objects.requireNonNull(previousValue, SetLineItemTaxRateChange.class + ": previousValue is missing");
Objects.requireNonNull(nextValue, SetLineItemTaxRateChange.class + ": nextValue is missing");
Objects.requireNonNull(lineItem, SetLineItemTaxRateChange.class + ": lineItem is missing");
Objects.requireNonNull(variant, SetLineItemTaxRateChange.class + ": variant is missing");
Objects.requireNonNull(taxMode, SetLineItemTaxRateChange.class + ": taxMode is missing");
return new SetLineItemTaxRateChangeImpl(change, previousValue, nextValue, lineItem, variant, taxMode);
}
/**
* builds SetLineItemTaxRateChange without checking for non-null required values
* @return SetLineItemTaxRateChange
*/
public SetLineItemTaxRateChange buildUnchecked() {
return new SetLineItemTaxRateChangeImpl(change, previousValue, nextValue, lineItem, variant, taxMode);
}
/**
* factory method for an instance of SetLineItemTaxRateChangeBuilder
* @return builder
*/
public static SetLineItemTaxRateChangeBuilder of() {
return new SetLineItemTaxRateChangeBuilder();
}
/**
* create builder for SetLineItemTaxRateChange instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static SetLineItemTaxRateChangeBuilder of(final SetLineItemTaxRateChange template) {
SetLineItemTaxRateChangeBuilder builder = new SetLineItemTaxRateChangeBuilder();
builder.change = template.getChange();
builder.previousValue = template.getPreviousValue();
builder.nextValue = template.getNextValue();
builder.lineItem = template.getLineItem();
builder.variant = template.getVariant();
builder.taxMode = template.getTaxMode();
return builder;
}
}