001
002package com.commercetools.api.models.inventory;
003
004import java.util.*;
005
006import javax.annotation.Nullable;
007
008import io.vrap.rmf.base.client.Builder;
009import io.vrap.rmf.base.client.utils.Generated;
010
011/**
012 * InventoryEntrySetKeyActionBuilder
013 * <hr>
014 * Example to create an instance using the builder pattern
015 * <div class=code-example>
016 * <pre><code class='java'>
017 *     InventoryEntrySetKeyAction inventoryEntrySetKeyAction = InventoryEntrySetKeyAction.builder()
018 *             .build()
019 * </code></pre>
020 * </div>
021 */
022@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
023public class InventoryEntrySetKeyActionBuilder implements Builder<InventoryEntrySetKeyAction> {
024
025    @Nullable
026    private String key;
027
028    /**
029     *  <p>Value to set. If empty, any existing value will be removed.</p>
030     * @param key value to be set
031     * @return Builder
032     */
033
034    public InventoryEntrySetKeyActionBuilder key(@Nullable final String key) {
035        this.key = key;
036        return this;
037    }
038
039    /**
040     *  <p>Value to set. If empty, any existing value will be removed.</p>
041     * @return key
042     */
043
044    @Nullable
045    public String getKey() {
046        return this.key;
047    }
048
049    /**
050     * builds InventoryEntrySetKeyAction with checking for non-null required values
051     * @return InventoryEntrySetKeyAction
052     */
053    public InventoryEntrySetKeyAction build() {
054        return new InventoryEntrySetKeyActionImpl(key);
055    }
056
057    /**
058     * builds InventoryEntrySetKeyAction without checking for non-null required values
059     * @return InventoryEntrySetKeyAction
060     */
061    public InventoryEntrySetKeyAction buildUnchecked() {
062        return new InventoryEntrySetKeyActionImpl(key);
063    }
064
065    /**
066     * factory method for an instance of InventoryEntrySetKeyActionBuilder
067     * @return builder
068     */
069    public static InventoryEntrySetKeyActionBuilder of() {
070        return new InventoryEntrySetKeyActionBuilder();
071    }
072
073    /**
074     * create builder for InventoryEntrySetKeyAction instance
075     * @param template instance with prefilled values for the builder
076     * @return builder
077     */
078    public static InventoryEntrySetKeyActionBuilder of(final InventoryEntrySetKeyAction template) {
079        InventoryEntrySetKeyActionBuilder builder = new InventoryEntrySetKeyActionBuilder();
080        builder.key = template.getKey();
081        return builder;
082    }
083
084}