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

com.commercetools.history.models.common.TaxedItemPriceBuilder Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.common;

import java.util.*;
import java.util.function.Function;

import io.vrap.rmf.base.client.Builder;
import io.vrap.rmf.base.client.utils.Generated;

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

 *     TaxedItemPrice taxedItemPrice = TaxedItemPrice.builder()
 *             .totalNet(totalNetBuilder -> totalNetBuilder)
 *             .totalGross(totalGrossBuilder -> totalGrossBuilder)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class TaxedItemPriceBuilder implements Builder { private com.commercetools.history.models.common.Money totalNet; private com.commercetools.history.models.common.Money totalGross; /** * set the value to the totalNet using the builder function * @param builder function to build the totalNet value * @return Builder */ public TaxedItemPriceBuilder totalNet( Function builder) { this.totalNet = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()).build(); return this; } /** * set the value to the totalNet using the builder function * @param builder function to build the totalNet value * @return Builder */ public TaxedItemPriceBuilder withTotalNet( Function builder) { this.totalNet = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()); return this; } /** * set the value to the totalNet * @param totalNet value to be set * @return Builder */ public TaxedItemPriceBuilder totalNet(final com.commercetools.history.models.common.Money totalNet) { this.totalNet = totalNet; return this; } /** * set the value to the totalGross using the builder function * @param builder function to build the totalGross value * @return Builder */ public TaxedItemPriceBuilder totalGross( Function builder) { this.totalGross = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()).build(); return this; } /** * set the value to the totalGross using the builder function * @param builder function to build the totalGross value * @return Builder */ public TaxedItemPriceBuilder withTotalGross( Function builder) { this.totalGross = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()); return this; } /** * set the value to the totalGross * @param totalGross value to be set * @return Builder */ public TaxedItemPriceBuilder totalGross(final com.commercetools.history.models.common.Money totalGross) { this.totalGross = totalGross; return this; } /** * value of totalNet} * @return totalNet */ public com.commercetools.history.models.common.Money getTotalNet() { return this.totalNet; } /** * value of totalGross} * @return totalGross */ public com.commercetools.history.models.common.Money getTotalGross() { return this.totalGross; } /** * builds TaxedItemPrice with checking for non-null required values * @return TaxedItemPrice */ public TaxedItemPrice build() { Objects.requireNonNull(totalNet, TaxedItemPrice.class + ": totalNet is missing"); Objects.requireNonNull(totalGross, TaxedItemPrice.class + ": totalGross is missing"); return new TaxedItemPriceImpl(totalNet, totalGross); } /** * builds TaxedItemPrice without checking for non-null required values * @return TaxedItemPrice */ public TaxedItemPrice buildUnchecked() { return new TaxedItemPriceImpl(totalNet, totalGross); } /** * factory method for an instance of TaxedItemPriceBuilder * @return builder */ public static TaxedItemPriceBuilder of() { return new TaxedItemPriceBuilder(); } /** * create builder for TaxedItemPrice instance * @param template instance with prefilled values for the builder * @return builder */ public static TaxedItemPriceBuilder of(final TaxedItemPrice template) { TaxedItemPriceBuilder builder = new TaxedItemPriceBuilder(); builder.totalNet = template.getTotalNet(); builder.totalGross = template.getTotalGross(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy