Class TextSetAttributeBuilder

java.lang.Object
com.commercetools.importapi.models.productvariants.TextSetAttributeBuilder
All Implemented Interfaces:
Builder<TextSetAttribute>

public class TextSetAttributeBuilder extends Object implements Builder<TextSetAttribute>
TextSetAttributeBuilder
Example to create an instance using the builder pattern

     TextSetAttribute textSetAttribute = TextSetAttribute.builder()
             .plusValue(valueBuilder -> valueBuilder)
             .build()
 
  • Constructor Details

    • TextSetAttributeBuilder

      public TextSetAttributeBuilder()
  • Method Details

    • name

      The name of this attribute must match a name of the product types attribute definitions. The name is required if this type is used in a product variant and must not be set when used in a product variant patch.

      Parameters:
      name - value to be set
      Returns:
      Builder
    • value

      public TextSetAttributeBuilder value(String... value)
      set values to the value
      Parameters:
      value - value to be set
      Returns:
      Builder
    • value

      public TextSetAttributeBuilder value(List<String> value)
      set value to the value
      Parameters:
      value - value to be set
      Returns:
      Builder
    • plusValue

      public TextSetAttributeBuilder plusValue(String... value)
      add values to the value
      Parameters:
      value - value to be set
      Returns:
      Builder
    • getName

      @Nullable public String getName()

      The name of this attribute must match a name of the product types attribute definitions. The name is required if this type is used in a product variant and must not be set when used in a product variant patch.

      Returns:
      name
    • getValue

      public List<String> getValue()
      value of value}
      Returns:
      value
    • build

      public TextSetAttribute build()
      builds TextSetAttribute with checking for non-null required values
      Specified by:
      build in interface Builder<TextSetAttribute>
      Returns:
      TextSetAttribute
    • buildUnchecked

      public TextSetAttribute buildUnchecked()
      builds TextSetAttribute without checking for non-null required values
      Returns:
      TextSetAttribute
    • of

      public static TextSetAttributeBuilder of()
      factory method for an instance of TextSetAttributeBuilder
      Returns:
      builder
    • of

      public static TextSetAttributeBuilder of(TextSetAttribute template)
      create builder for TextSetAttribute instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder