Class LocalizableTextAttributeBuilder

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

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

     LocalizableTextAttribute localizableTextAttribute = LocalizableTextAttribute.builder()
             .value(valueBuilder -> valueBuilder)
             .build()
 
  • Constructor Details

    • LocalizableTextAttributeBuilder

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

      A localized string is a JSON object where the keys are of IETF language tag, and the values the corresponding strings used for that language.

      {
          "de": "Hundefutter",
          "en": "dog food"
        }
        
      Parameters:
      builder - function to build the value value
      Returns:
      Builder
    • withValue

      A localized string is a JSON object where the keys are of IETF language tag, and the values the corresponding strings used for that language.

      {
          "de": "Hundefutter",
          "en": "dog food"
        }
        
      Parameters:
      builder - function to build the value value
      Returns:
      Builder
    • value

      A localized string is a JSON object where the keys are of IETF language tag, and the values the corresponding strings used for that language.

      {
          "de": "Hundefutter",
          "en": "dog food"
        }
        
      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 LocalizedString getValue()

      A localized string is a JSON object where the keys are of IETF language tag, and the values the corresponding strings used for that language.

      {
          "de": "Hundefutter",
          "en": "dog food"
        }
        
      Returns:
      value
    • build

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

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

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

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