Package com.commercetools.api.models.me
Class MyQuoteUpdateBuilder
java.lang.Object
com.commercetools.api.models.me.MyQuoteUpdateBuilder
- All Implemented Interfaces:
Builder<MyQuoteUpdate>
MyQuoteUpdateBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
MyQuoteUpdate myQuoteUpdate = MyQuoteUpdate.builder()
.version(0.3)
.plusActions(actionsBuilder -> actionsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionactions
(MyQuoteUpdateAction... actions) Update actions to be performed on the Quote.actions
(List<MyQuoteUpdateAction> actions) Update actions to be performed on the Quote.build()
builds MyQuoteUpdate with checking for non-null required valuesbuilds MyQuoteUpdate without checking for non-null required valuesUpdate actions to be performed on the Quote.Expected version of the Quote to which the changes should be applied.static MyQuoteUpdateBuilder
of()
factory method for an instance of MyQuoteUpdateBuilderstatic MyQuoteUpdateBuilder
of
(MyQuoteUpdate template) create builder for MyQuoteUpdate instanceplusActions
(MyQuoteUpdateAction... actions) Update actions to be performed on the Quote.plusActions
(Function<MyQuoteUpdateActionBuilder, Builder<? extends MyQuoteUpdateAction>> builder) Update actions to be performed on the Quote.Expected version of the Quote to which the changes should be applied.withActions
(Function<MyQuoteUpdateActionBuilder, Builder<? extends MyQuoteUpdateAction>> builder) Update actions to be performed on the Quote.
-
Constructor Details
-
MyQuoteUpdateBuilder
public MyQuoteUpdateBuilder()
-
-
Method Details
-
version
Expected version of the Quote to which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.
- Parameters:
version
- value to be set- Returns:
- Builder
-
actions
Update actions to be performed on the Quote.
- Parameters:
actions
- value to be set- Returns:
- Builder
-
actions
Update actions to be performed on the Quote.
- Parameters:
actions
- value to be set- Returns:
- Builder
-
plusActions
Update actions to be performed on the Quote.
- Parameters:
actions
- value to be set- Returns:
- Builder
-
plusActions
public MyQuoteUpdateBuilder plusActions(Function<MyQuoteUpdateActionBuilder, Builder<? extends MyQuoteUpdateAction>> builder) Update actions to be performed on the Quote.
- Parameters:
builder
- function to build the actions value- Returns:
- Builder
-
withActions
public MyQuoteUpdateBuilder withActions(Function<MyQuoteUpdateActionBuilder, Builder<? extends MyQuoteUpdateAction>> builder) Update actions to be performed on the Quote.
- Parameters:
builder
- function to build the actions value- Returns:
- Builder
-
getVersion
Expected version of the Quote to which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.
- Returns:
- version
-
getActions
Update actions to be performed on the Quote.
- Returns:
- actions
-
build
builds MyQuoteUpdate with checking for non-null required values- Specified by:
build
in interfaceBuilder<MyQuoteUpdate>
- Returns:
- MyQuoteUpdate
-
buildUnchecked
builds MyQuoteUpdate without checking for non-null required values- Returns:
- MyQuoteUpdate
-
of
factory method for an instance of MyQuoteUpdateBuilder- Returns:
- builder
-
of
create builder for MyQuoteUpdate instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-