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

com.commercetools.history.models.label.ProductLabelBuilder Maven / Gradle / Ivy

There is a newer version: 17.12.0
Show newest version

package com.commercetools.history.models.label;

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

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

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

 *     ProductLabel productLabel = ProductLabel.builder()
 *             .slug(slugBuilder -> slugBuilder)
 *             .name(nameBuilder -> nameBuilder)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class ProductLabelBuilder implements Builder { private com.commercetools.history.models.common.LocalizedString slug; private com.commercetools.history.models.common.LocalizedString name; /** *

User-defined identifier used in a deep-link URL for the Product.

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

User-defined identifier used in a deep-link URL for the Product.

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

User-defined identifier used in a deep-link URL for the Product.

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

Name of the Product.

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

Name of the Product.

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

Name of the Product.

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

User-defined identifier used in a deep-link URL for the Product.

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

Name of the Product.

* @return name */ public com.commercetools.history.models.common.LocalizedString getName() { return this.name; } /** * builds ProductLabel with checking for non-null required values * @return ProductLabel */ public ProductLabel build() { Objects.requireNonNull(slug, ProductLabel.class + ": slug is missing"); Objects.requireNonNull(name, ProductLabel.class + ": name is missing"); return new ProductLabelImpl(slug, name); } /** * builds ProductLabel without checking for non-null required values * @return ProductLabel */ public ProductLabel buildUnchecked() { return new ProductLabelImpl(slug, name); } /** * factory method for an instance of ProductLabelBuilder * @return builder */ public static ProductLabelBuilder of() { return new ProductLabelBuilder(); } /** * create builder for ProductLabel instance * @param template instance with prefilled values for the builder * @return builder */ public static ProductLabelBuilder of(final ProductLabel template) { ProductLabelBuilder builder = new ProductLabelBuilder(); builder.slug = template.getSlug(); builder.name = template.getName(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy