-
- All Known Subinterfaces:
MonetaryAmount
- 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 NumberSupplierRepresents a supplier of
NumberValue-valued results. This is theNumberValue-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
getNumber(). This class does not extendSuppliersinceMonetaryAmountimplements both supplier interfaces,NumberSupplierandCurrencySupplier, which will lead to method name conflicts.- Since:
- 0.8
- Version:
- 1.0
- Author:
- Werner Keil, Anatole Tresch
- See Also:
Supplier
-
-
Method Summary
Modifier and Type Method Description NumberValuegetNumber()Gets the correspondingNumberValue.
-
-
-
Method Detail
-
getNumber
NumberValue getNumber()
Gets the correspondingNumberValue.- Returns:
- the corresponding
NumberValue, not null.
-
-