Interface MoneySetAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
MoneySetAttributeImpl

public interface MoneySetAttribute extends Attribute

This type represents an attribute whose value is a set of money objects.


Example to create an instance using the builder pattern

     MoneySetAttribute moneySetAttribute = MoneySetAttribute.builder()
             .plusValue(valueBuilder -> valueBuilder)
             .build()