All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.history.models.change.SetLineItemTaxedPriceChangeBuilder Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

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;

/**
 * SetLineItemTaxedPriceChangeBuilder
 * 
* Example to create an instance using the builder pattern *
*

 *     SetLineItemTaxedPriceChange setLineItemTaxedPriceChange = SetLineItemTaxedPriceChange.builder()
 *             .change("{change}")
 *             .previousValue(previousValueBuilder -> previousValueBuilder)
 *             .nextValue(nextValueBuilder -> nextValueBuilder)
 *             .lineItem(lineItemBuilder -> lineItemBuilder)
 *             .lineItemId("{lineItemId}")
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class SetLineItemTaxedPriceChangeBuilder 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.LocalizedString lineItem; private String lineItemId; /** * set the value to the change * @param change value to be set * @return Builder */ public SetLineItemTaxedPriceChangeBuilder change(final String change) { this.change = change; return this; } /** *

Value before the change.

* @param builder function to build the previousValue value * @return Builder */ public SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder nextValue( final com.commercetools.history.models.common.TaxedItemPrice 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 SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder 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 SetLineItemTaxedPriceChangeBuilder lineItem( final com.commercetools.history.models.common.LocalizedString lineItem) { this.lineItem = lineItem; return this; } /** *

id of the updated LineItem.

* @param lineItemId value to be set * @return Builder */ public SetLineItemTaxedPriceChangeBuilder lineItemId(final String lineItemId) { this.lineItemId = lineItemId; 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; } /** *

Name of the Product the Line Item is based on.

* @return lineItem */ public com.commercetools.history.models.common.LocalizedString getLineItem() { return this.lineItem; } /** *

id of the updated LineItem.

* @return lineItemId */ public String getLineItemId() { return this.lineItemId; } /** * builds SetLineItemTaxedPriceChange with checking for non-null required values * @return SetLineItemTaxedPriceChange */ public SetLineItemTaxedPriceChange build() { Objects.requireNonNull(change, SetLineItemTaxedPriceChange.class + ": change is missing"); Objects.requireNonNull(previousValue, SetLineItemTaxedPriceChange.class + ": previousValue is missing"); Objects.requireNonNull(nextValue, SetLineItemTaxedPriceChange.class + ": nextValue is missing"); Objects.requireNonNull(lineItem, SetLineItemTaxedPriceChange.class + ": lineItem is missing"); Objects.requireNonNull(lineItemId, SetLineItemTaxedPriceChange.class + ": lineItemId is missing"); return new SetLineItemTaxedPriceChangeImpl(change, previousValue, nextValue, lineItem, lineItemId); } /** * builds SetLineItemTaxedPriceChange without checking for non-null required values * @return SetLineItemTaxedPriceChange */ public SetLineItemTaxedPriceChange buildUnchecked() { return new SetLineItemTaxedPriceChangeImpl(change, previousValue, nextValue, lineItem, lineItemId); } /** * factory method for an instance of SetLineItemTaxedPriceChangeBuilder * @return builder */ public static SetLineItemTaxedPriceChangeBuilder of() { return new SetLineItemTaxedPriceChangeBuilder(); } /** * create builder for SetLineItemTaxedPriceChange instance * @param template instance with prefilled values for the builder * @return builder */ public static SetLineItemTaxedPriceChangeBuilder of(final SetLineItemTaxedPriceChange template) { SetLineItemTaxedPriceChangeBuilder builder = new SetLineItemTaxedPriceChangeBuilder(); builder.change = template.getChange(); builder.previousValue = template.getPreviousValue(); builder.nextValue = template.getNextValue(); builder.lineItem = template.getLineItem(); builder.lineItemId = template.getLineItemId(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy