javax.money.CurrencySupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of money-api Show documentation
Show all versions of money-api Show documentation
JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency.
/*
* CREDIT SUISSE IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE
* CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT.
* PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY
* DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE
* AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE"
* BUTTON AT THE BOTTOM OF THIS PAGE. Specification: JSR-354 Money and Currency
* API ("Specification") Copyright (c) 2012-2013, Credit Suisse All rights
* reserved.
*/
package javax.money;
/**
* Represents a supplier of {@link CurrencyUnit}-valued results. This is the
* {@link CurrencyUnit}-producing specialization of {@code Supplier} (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 {@link #getCurrency()}.
* This class does not extends {@link java.util.function.Supplier} since {@link javax.money.MonetaryAmount} implements
* both supplier interfaces, {@link javax.money.NumberSupplier} and {@link javax.money.CurrencySupplier},
* which will lead
* to method name conflicts.
*
*
* @author Werner Keil
* @version 0.5
* @since 0.8
* @see java.util.function.Supplier
*/
@FunctionalInterface
public interface CurrencySupplier {
/**
* Gets the corresponding {@link javax.money.CurrencyUnit}.
*
* @return the corresponding {@link javax.money.CurrencyUnit}, not null.
*/
CurrencyUnit getCurrency();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy