Class TimeSetAttributeBuilder

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

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

     TimeSetAttribute timeSetAttribute = TimeSetAttribute.builder()
             .plusValue(valueBuilder -> valueBuilder)
             .build()
 
  • Constructor Details

    • TimeSetAttributeBuilder

      public TimeSetAttributeBuilder()
  • Method Details

    • name

      public TimeSetAttributeBuilder name(@Nullable String name)

      Required if used for ProductVariantImport. Must not be set if used for ProductVariantPatch.

      Must match name of an AttributeDefinition of the Product Type.

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

      public TimeSetAttributeBuilder value(LocalTime... value)

      A set of time values in the format HH:mm:ss.SSS. The time zone is optional and defaults to UTC if not specified. If the time zone is specified, it must be in the format ±HH:mm or Z for UTC.

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

      public TimeSetAttributeBuilder value(List<LocalTime> value)

      A set of time values in the format HH:mm:ss.SSS. The time zone is optional and defaults to UTC if not specified. If the time zone is specified, it must be in the format ±HH:mm or Z for UTC.

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

      public TimeSetAttributeBuilder plusValue(LocalTime... value)

      A set of time values in the format HH:mm:ss.SSS. The time zone is optional and defaults to UTC if not specified. If the time zone is specified, it must be in the format ±HH:mm or Z for UTC.

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

      @Nullable public String getName()

      Required if used for ProductVariantImport. Must not be set if used for ProductVariantPatch.

      Must match name of an AttributeDefinition of the Product Type.

      Returns:
      name
    • getValue

      public List<LocalTime> getValue()

      A set of time values in the format HH:mm:ss.SSS. The time zone is optional and defaults to UTC if not specified. If the time zone is specified, it must be in the format ±HH:mm or Z for UTC.

      Returns:
      value
    • build

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

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

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

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