Class LocalizableEnumAttributeBuilder

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

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

     LocalizableEnumAttribute localizableEnumAttribute = LocalizableEnumAttribute.builder()
             .value("{value}")
             .build()
 
  • Constructor Details

    • LocalizableEnumAttributeBuilder

      public LocalizableEnumAttributeBuilder()
  • 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

      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 LocalizableEnumAttribute build()
      builds LocalizableEnumAttribute with checking for non-null required values
      Specified by:
      build in interface Builder<LocalizableEnumAttribute>
      Returns:
      LocalizableEnumAttribute
    • buildUnchecked

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

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

      create builder for LocalizableEnumAttribute instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder