Class ChangeAttributeOrderByNameChangeBuilder
java.lang.Object
com.commercetools.history.models.change.ChangeAttributeOrderByNameChangeBuilder
- All Implemented Interfaces:
Builder<ChangeAttributeOrderByNameChange>
public class ChangeAttributeOrderByNameChangeBuilder
extends Object
implements Builder<ChangeAttributeOrderByNameChange>
ChangeAttributeOrderByNameChangeBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ChangeAttributeOrderByNameChange changeAttributeOrderByNameChange = ChangeAttributeOrderByNameChange.builder()
.change("{change}")
.plusPreviousValue(previousValueBuilder -> previousValueBuilder)
.plusNextValue(nextValueBuilder -> nextValueBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds ChangeAttributeOrderByNameChange with checking for non-null required valuesbuilds ChangeAttributeOrderByNameChange without checking for non-null required valuesset the value to the changevalue of change}Value after the change.Value before the change.Value after the change.Value after the change.of()
factory method for an instance of ChangeAttributeOrderByNameChangeBuilderof
(ChangeAttributeOrderByNameChange template) create builder for ChangeAttributeOrderByNameChange instanceplusNextValue
(String... nextValue) Value after the change.plusPreviousValue
(String... previousValue) Value before the change.previousValue
(String... previousValue) Value before the change.previousValue
(List<String> previousValue) Value before the change.
-
Constructor Details
-
ChangeAttributeOrderByNameChangeBuilder
public ChangeAttributeOrderByNameChangeBuilder()
-
-
Method Details
-
change
set the value to the change- Parameters:
change
- value to be set- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue
- value to be set- Returns:
- Builder
-
previousValue
Value before the change.
- Parameters:
previousValue
- value to be set- Returns:
- Builder
-
plusPreviousValue
Value before the change.
- Parameters:
previousValue
- value to be set- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue
- value to be set- Returns:
- Builder
-
nextValue
Value after the change.
- Parameters:
nextValue
- value to be set- Returns:
- Builder
-
plusNextValue
Value after the change.
- Parameters:
nextValue
- value to be set- Returns:
- Builder
-
getChange
value of change}- Returns:
- change
-
getPreviousValue
Value before the change.
- Returns:
- previousValue
-
getNextValue
Value after the change.
- Returns:
- nextValue
-
build
builds ChangeAttributeOrderByNameChange with checking for non-null required values- Specified by:
build
in interfaceBuilder<ChangeAttributeOrderByNameChange>
- Returns:
- ChangeAttributeOrderByNameChange
-
buildUnchecked
builds ChangeAttributeOrderByNameChange without checking for non-null required values- Returns:
- ChangeAttributeOrderByNameChange
-
of
factory method for an instance of ChangeAttributeOrderByNameChangeBuilder- Returns:
- builder
-
of
create builder for ChangeAttributeOrderByNameChange instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-