Class TimeSetAttributeBuilder
java.lang.Object
com.commercetools.importapi.models.productvariants.TimeSetAttributeBuilder
- All Implemented Interfaces:
Builder<TimeSetAttribute>
TimeSetAttributeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
TimeSetAttribute timeSetAttribute = TimeSetAttribute.builder()
.plusValue(valueBuilder -> valueBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds TimeSetAttribute with checking for non-null required valuesbuilds TimeSetAttribute without checking for non-null required valuesgetName()
The name of this attribute must match a name of the product types attribute definitions.getValue()
value of value}The name of this attribute must match a name of the product types attribute definitions.static TimeSetAttributeBuilder
of()
factory method for an instance of TimeSetAttributeBuilderstatic TimeSetAttributeBuilder
of
(TimeSetAttribute template) create builder for TimeSetAttribute instanceadd values to the valueset values to the valueset value to the value
-
Constructor Details
-
TimeSetAttributeBuilder
public TimeSetAttributeBuilder()
-
-
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 values to the value- Parameters:
value
- value to be set- Returns:
- Builder
-
value
set value to the value- Parameters:
value
- value to be set- Returns:
- Builder
-
plusValue
add values to the value- 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
value of value}- Returns:
- value
-
build
builds TimeSetAttribute with checking for non-null required values- Specified by:
build
in interfaceBuilder<TimeSetAttribute>
- Returns:
- TimeSetAttribute
-
buildUnchecked
builds TimeSetAttribute without checking for non-null required values- Returns:
- TimeSetAttribute
-
of
factory method for an instance of TimeSetAttributeBuilder- Returns:
- builder
-
of
create builder for TimeSetAttribute instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-