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

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

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.common;

import java.util.*;

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

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

 *     Variant variant = Variant.builder()
 *             .id(1)
 *             .sku("{sku}")
 *             .key("{key}")
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class VariantBuilder implements Builder { private Integer id; private String sku; private String key; /** * set the value to the id * @param id value to be set * @return Builder */ public VariantBuilder id(final Integer id) { this.id = id; return this; } /** * set the value to the sku * @param sku value to be set * @return Builder */ public VariantBuilder sku(final String sku) { this.sku = sku; return this; } /** * set the value to the key * @param key value to be set * @return Builder */ public VariantBuilder key(final String key) { this.key = key; return this; } /** * value of id} * @return id */ public Integer getId() { return this.id; } /** * value of sku} * @return sku */ public String getSku() { return this.sku; } /** * value of key} * @return key */ public String getKey() { return this.key; } /** * builds Variant with checking for non-null required values * @return Variant */ public Variant build() { Objects.requireNonNull(id, Variant.class + ": id is missing"); Objects.requireNonNull(sku, Variant.class + ": sku is missing"); Objects.requireNonNull(key, Variant.class + ": key is missing"); return new VariantImpl(id, sku, key); } /** * builds Variant without checking for non-null required values * @return Variant */ public Variant buildUnchecked() { return new VariantImpl(id, sku, key); } /** * factory method for an instance of VariantBuilder * @return builder */ public static VariantBuilder of() { return new VariantBuilder(); } /** * create builder for Variant instance * @param template instance with prefilled values for the builder * @return builder */ public static VariantBuilder of(final Variant template) { VariantBuilder builder = new VariantBuilder(); builder.id = template.getId(); builder.sku = template.getSku(); builder.key = template.getKey(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy