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

com.commercetools.history.models.change_value.SetCartClassificationShippingRateInputValueBuilder 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;

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

 *     SetCartClassificationShippingRateInputValue setCartClassificationShippingRateInputValue = SetCartClassificationShippingRateInputValue.builder()
 *             .type("{type}")
 *             .key("{key}")
 *             .label(labelBuilder -> labelBuilder)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class SetCartClassificationShippingRateInputValueBuilder implements Builder { private String type; private String key; private com.commercetools.history.models.common.LocalizedString label; /** * set the value to the type * @param type value to be set * @return Builder */ public SetCartClassificationShippingRateInputValueBuilder type(final String type) { this.type = type; return this; } /** *

Key of the value used as a programmatic identifier.

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

Descriptive localized label of the value.

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

Descriptive localized label of the value.

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

Descriptive localized label of the value.

* @param label value to be set * @return Builder */ public SetCartClassificationShippingRateInputValueBuilder label( final com.commercetools.history.models.common.LocalizedString label) { this.label = label; return this; } /** * value of type} * @return type */ public String getType() { return this.type; } /** *

Key of the value used as a programmatic identifier.

* @return key */ public String getKey() { return this.key; } /** *

Descriptive localized label of the value.

* @return label */ public com.commercetools.history.models.common.LocalizedString getLabel() { return this.label; } /** * builds SetCartClassificationShippingRateInputValue with checking for non-null required values * @return SetCartClassificationShippingRateInputValue */ public SetCartClassificationShippingRateInputValue build() { Objects.requireNonNull(type, SetCartClassificationShippingRateInputValue.class + ": type is missing"); Objects.requireNonNull(key, SetCartClassificationShippingRateInputValue.class + ": key is missing"); Objects.requireNonNull(label, SetCartClassificationShippingRateInputValue.class + ": label is missing"); return new SetCartClassificationShippingRateInputValueImpl(type, key, label); } /** * builds SetCartClassificationShippingRateInputValue without checking for non-null required values * @return SetCartClassificationShippingRateInputValue */ public SetCartClassificationShippingRateInputValue buildUnchecked() { return new SetCartClassificationShippingRateInputValueImpl(type, key, label); } /** * factory method for an instance of SetCartClassificationShippingRateInputValueBuilder * @return builder */ public static SetCartClassificationShippingRateInputValueBuilder of() { return new SetCartClassificationShippingRateInputValueBuilder(); } /** * create builder for SetCartClassificationShippingRateInputValue instance * @param template instance with prefilled values for the builder * @return builder */ public static SetCartClassificationShippingRateInputValueBuilder of( final SetCartClassificationShippingRateInputValue template) { SetCartClassificationShippingRateInputValueBuilder builder = new SetCartClassificationShippingRateInputValueBuilder(); builder.type = template.getType(); builder.key = template.getKey(); builder.label = template.getLabel(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy