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