Class TextAttributeBuilder

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

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

     TextAttribute textAttribute = TextAttribute.builder()
             .value("{value}")
             .build()
 
  • Constructor Details

    • TextAttributeBuilder

      public TextAttributeBuilder()
  • 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 TextAttributeBuilder value(String value)
      set the value 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 String getValue()
      value of value}
      Returns:
      value
    • build

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

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

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

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