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

com.commercetools.history.models.common.TaxedPriceBuilder 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;

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

 *     TaxedPrice taxedPrice = TaxedPrice.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 TaxedPriceBuilder implements Builder { private com.commercetools.history.models.common.Money totalNet; private com.commercetools.history.models.common.Money totalGross; /** *

Total net price of the Order.

* @param builder function to build the totalNet value * @return Builder */ public TaxedPriceBuilder totalNet( Function builder) { this.totalNet = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()).build(); return this; } /** *

Total net price of the Order.

* @param builder function to build the totalNet value * @return Builder */ public TaxedPriceBuilder withTotalNet( Function builder) { this.totalNet = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()); return this; } /** *

Total net price of the Order.

* @param totalNet value to be set * @return Builder */ public TaxedPriceBuilder totalNet(final com.commercetools.history.models.common.Money totalNet) { this.totalNet = totalNet; return this; } /** *

Total gross price of the Order.

* @param builder function to build the totalGross value * @return Builder */ public TaxedPriceBuilder totalGross( Function builder) { this.totalGross = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()).build(); return this; } /** *

Total gross price of the Order.

* @param builder function to build the totalGross value * @return Builder */ public TaxedPriceBuilder withTotalGross( Function builder) { this.totalGross = builder.apply(com.commercetools.history.models.common.MoneyBuilder.of()); return this; } /** *

Total gross price of the Order.

* @param totalGross value to be set * @return Builder */ public TaxedPriceBuilder totalGross(final com.commercetools.history.models.common.Money totalGross) { this.totalGross = totalGross; return this; } /** *

Total net price of the Order.

* @return totalNet */ public com.commercetools.history.models.common.Money getTotalNet() { return this.totalNet; } /** *

Total gross price of the Order.

* @return totalGross */ public com.commercetools.history.models.common.Money getTotalGross() { return this.totalGross; } /** * builds TaxedPrice with checking for non-null required values * @return TaxedPrice */ public TaxedPrice build() { Objects.requireNonNull(totalNet, TaxedPrice.class + ": totalNet is missing"); Objects.requireNonNull(totalGross, TaxedPrice.class + ": totalGross is missing"); return new TaxedPriceImpl(totalNet, totalGross); } /** * builds TaxedPrice without checking for non-null required values * @return TaxedPrice */ public TaxedPrice buildUnchecked() { return new TaxedPriceImpl(totalNet, totalGross); } /** * factory method for an instance of TaxedPriceBuilder * @return builder */ public static TaxedPriceBuilder of() { return new TaxedPriceBuilder(); } /** * create builder for TaxedPrice instance * @param template instance with prefilled values for the builder * @return builder */ public static TaxedPriceBuilder of(final TaxedPrice template) { TaxedPriceBuilder builder = new TaxedPriceBuilder(); builder.totalNet = template.getTotalNet(); builder.totalGross = template.getTotalGross(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy