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

com.commercetools.history.models.change_value.ShoppingListLineItemValueBuilder Maven / Gradle / Ivy

There is a newer version: 17.12.0
Show newest version

package com.commercetools.history.models.change_value;

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

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

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

 *     ShoppingListLineItemValue shoppingListLineItemValue = ShoppingListLineItemValue.builder()
 *             .id("{id}")
 *             .name(nameBuilder -> nameBuilder)
 *             .variantId(1)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class ShoppingListLineItemValueBuilder implements Builder { private String id; private com.commercetools.history.models.common.LocalizedString name; private Integer variantId; /** *

id of the ShoppingListLineItem.

* @param id value to be set * @return Builder */ public ShoppingListLineItemValueBuilder id(final String id) { this.id = id; return this; } /** *

Name of the corresponding Product the Product Variant belongs to.

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

Name of the corresponding Product the Product Variant belongs to.

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

Name of the corresponding Product the Product Variant belongs to.

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

id of the ProductVariant the ShoppingListLineItem refers to.

* @param variantId value to be set * @return Builder */ public ShoppingListLineItemValueBuilder variantId(final Integer variantId) { this.variantId = variantId; return this; } /** *

id of the ShoppingListLineItem.

* @return id */ public String getId() { return this.id; } /** *

Name of the corresponding Product the Product Variant belongs to.

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

id of the ProductVariant the ShoppingListLineItem refers to.

* @return variantId */ public Integer getVariantId() { return this.variantId; } /** * builds ShoppingListLineItemValue with checking for non-null required values * @return ShoppingListLineItemValue */ public ShoppingListLineItemValue build() { Objects.requireNonNull(id, ShoppingListLineItemValue.class + ": id is missing"); Objects.requireNonNull(name, ShoppingListLineItemValue.class + ": name is missing"); Objects.requireNonNull(variantId, ShoppingListLineItemValue.class + ": variantId is missing"); return new ShoppingListLineItemValueImpl(id, name, variantId); } /** * builds ShoppingListLineItemValue without checking for non-null required values * @return ShoppingListLineItemValue */ public ShoppingListLineItemValue buildUnchecked() { return new ShoppingListLineItemValueImpl(id, name, variantId); } /** * factory method for an instance of ShoppingListLineItemValueBuilder * @return builder */ public static ShoppingListLineItemValueBuilder of() { return new ShoppingListLineItemValueBuilder(); } /** * create builder for ShoppingListLineItemValue instance * @param template instance with prefilled values for the builder * @return builder */ public static ShoppingListLineItemValueBuilder of(final ShoppingListLineItemValue template) { ShoppingListLineItemValueBuilder builder = new ShoppingListLineItemValueBuilder(); builder.id = template.getId(); builder.name = template.getName(); builder.variantId = template.getVariantId(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy