Class QuoteUpdateBuilder
java.lang.Object
com.commercetools.api.models.quote.QuoteUpdateBuilder
- All Implemented Interfaces:
Builder<QuoteUpdate>
QuoteUpdateBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
QuoteUpdate quoteUpdate = QuoteUpdate.builder()
.version(0.3)
.plusActions(actionsBuilder -> actionsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionactions
(QuoteUpdateAction... actions) Update actions to be performed on the Quote.actions
(List<QuoteUpdateAction> actions) Update actions to be performed on the Quote.build()
builds QuoteUpdate with checking for non-null required valuesbuilds QuoteUpdate 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 QuoteUpdateBuilder
of()
factory method for an instance of QuoteUpdateBuilderstatic QuoteUpdateBuilder
of
(QuoteUpdate template) create builder for QuoteUpdate instanceplusActions
(QuoteUpdateAction... actions) Update actions to be performed on the Quote.plusActions
(Function<QuoteUpdateActionBuilder, Builder<? extends QuoteUpdateAction>> builder) Update actions to be performed on the Quote.Expected version of the Quote to which the changes should be applied.withActions
(Function<QuoteUpdateActionBuilder, Builder<? extends QuoteUpdateAction>> builder) Update actions to be performed on the Quote.
-
Constructor Details
-
QuoteUpdateBuilder
public QuoteUpdateBuilder()
-
-
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 QuoteUpdateBuilder plusActions(Function<QuoteUpdateActionBuilder, Builder<? extends QuoteUpdateAction>> builder) Update actions to be performed on the Quote.
- Parameters:
builder
- function to build the actions value- Returns:
- Builder
-
withActions
public QuoteUpdateBuilder withActions(Function<QuoteUpdateActionBuilder, Builder<? extends QuoteUpdateAction>> 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 QuoteUpdate with checking for non-null required values- Specified by:
build
in interfaceBuilder<QuoteUpdate>
- Returns:
- QuoteUpdate
-
buildUnchecked
builds QuoteUpdate without checking for non-null required values- Returns:
- QuoteUpdate
-
of
factory method for an instance of QuoteUpdateBuilder- Returns:
- builder
-
of
create builder for QuoteUpdate instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-