Class LocalizableTextAttributeBuilder

java.lang.Object
com.commercetools.importapi.models.productvariants.LocalizableTextAttributeBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<LocalizableTextAttribute>

public class LocalizableTextAttributeBuilder extends Object implements io.vrap.rmf.base.client.Builder<LocalizableTextAttribute>
LocalizableTextAttributeBuilder
Example to create an instance using the builder pattern

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

  • 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

      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

      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

      builds LocalizableTextAttribute with checking for non-null required values
      Specified by:
      build in interface io.vrap.rmf.base.client.Builder<LocalizableTextAttribute>
      Returns:
      LocalizableTextAttribute
    • buildUnchecked

      builds LocalizableTextAttribute without checking for non-null required values
      Returns:
      LocalizableTextAttribute
    • 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