Interface DiscountGroupUpdate
public interface DiscountGroupUpdate
DiscountGroupUpdate
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
DiscountGroupUpdate discountGroupUpdate = DiscountGroupUpdate.builder()
.version(0.3)
.plusActions(actionsBuilder -> actionsBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic DiscountGroupUpdateBuilderbuilder()builder factory method for DiscountGroupUpdatestatic DiscountGroupUpdateBuilderbuilder(DiscountGroupUpdate template) create builder for DiscountGroupUpdate instancecopyDeep()static DiscountGroupUpdatedeepCopy(DiscountGroupUpdate template) factory method to create a deep copy of DiscountGroupUpdate@NotNull @Valid List<DiscountGroupUpdateAction>Update actions to be performed on the DiscountGroup.@NotNull LongExpected version of the DiscountGroup on which the changes should be applied.static DiscountGroupUpdateof()factory methodstatic DiscountGroupUpdateof(DiscountGroupUpdate template) factory method to create a shallow copy DiscountGroupUpdatevoidsetActions(DiscountGroupUpdateAction... actions) Update actions to be performed on the DiscountGroup.voidsetActions(List<DiscountGroupUpdateAction> actions) Update actions to be performed on the DiscountGroup.voidsetVersion(Long version) Expected version of the DiscountGroup on which the changes should be applied.static com.fasterxml.jackson.core.type.TypeReference<DiscountGroupUpdate>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithDiscountGroupUpdate(Function<DiscountGroupUpdate, T> helper) accessor map function
-
Method Details
-
getVersion
Expected version of the DiscountGroup on 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 DiscountGroup.
- Returns:
- actions
-
setVersion
Expected version of the DiscountGroup on 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
-
setActions
Update actions to be performed on the DiscountGroup.
- Parameters:
actions- values to be set
-
setActions
Update actions to be performed on the DiscountGroup.
- Parameters:
actions- values to be set
-
of
factory method- Returns:
- instance of DiscountGroupUpdate
-
of
factory method to create a shallow copy DiscountGroupUpdate- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
DiscountGroupUpdate copyDeep() -
deepCopy
factory method to create a deep copy of DiscountGroupUpdate- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for DiscountGroupUpdate- Returns:
- builder
-
builder
create builder for DiscountGroupUpdate instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withDiscountGroupUpdate
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-