-
- All Known Subinterfaces:
CurrencyConversion,ExchangeRate,MonetaryAmount
- All Known Implementing Classes:
ConversionQuery,RoundingContext,RoundingQuery
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CurrencySupplierRepresents a supplier ofCurrencyUnit-valued results. This is theCurrencyUnit-producing specialization ofSupplier(as in Java 8).There is no requirement that a distinct result be returned each time the supplier is invoked.
This is a functional interface whose functional method is
getCurrency(). This class does not extendSuppliersinceMonetaryAmountimplements both supplier interfaces,NumberSupplierandCurrencySupplier, which will lead to method name conflicts.- Since:
- 0.8
- Version:
- 0.5
- Author:
- Werner Keil
- See Also:
Supplier
-
-
Method Summary
Modifier and Type Method Description CurrencyUnitgetCurrency()Gets the correspondingCurrencyUnit.
-
-
-
Method Detail
-
getCurrency
CurrencyUnit getCurrency()
Gets the correspondingCurrencyUnit.- Returns:
- the corresponding
CurrencyUnit, not null.
-
-