All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javamoney.moneta.spi.base.BaseMonetaryFormatsSingletonSpi Maven / Gradle / Ivy

Go to download

JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency. This module implements JSR 354.

There is a newer version: 1.4.1
Show newest version
/*
 * 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 org.javamoney.moneta.spi.base;

import javax.money.MonetaryException;
import javax.money.format.AmountFormatQuery;
import javax.money.format.AmountFormatQueryBuilder;
import javax.money.format.MonetaryAmountFormat;
import javax.money.spi.MonetaryFormatsSingletonSpi;
import java.util.Collection;
import java.util.Locale;

/**
 * This interface models the singleton functionality of {@link javax.money.format.MonetaryFormats}.
 * 

* Implementations of this interface must be thread-safe. * * @author Anatole Tresch * @author Werner Keil */ public abstract class BaseMonetaryFormatsSingletonSpi implements MonetaryFormatsSingletonSpi{ /** * Access an {@link javax.money.format.MonetaryAmountFormat} given a {@link javax.money.format * .AmountFormatQuery}. * * @param formatQuery The format query defining the requirements of the formatter. * @return the corresponding {@link javax.money.format.MonetaryAmountFormat} * @throws javax.money.MonetaryException if no registered {@link javax.money.spi * .MonetaryAmountFormatProviderSpi} can provide a * corresponding {@link javax.money.format.MonetaryAmountFormat} instance. */ public MonetaryAmountFormat getAmountFormat(AmountFormatQuery formatQuery) { Collection formats = getAmountFormats(formatQuery); if (formats.isEmpty()) { throw new MonetaryException("No MonetaryAmountFormat for AmountFormatQuery " + formatQuery); } return formats.iterator().next(); } /** * Checks if a {@link javax.money.format.MonetaryAmountFormat} is available given a {@link javax.money.format * .AmountFormatQuery}. * * @param formatQuery The format query defining the requirements of the formatter. * @return true, if a t least one {@link javax.money.format.MonetaryAmountFormat} is matching the query. */ public boolean isAvailable(AmountFormatQuery formatQuery) { return !getAmountFormats(formatQuery).isEmpty(); } /** * Checks if a {@link javax.money.format.MonetaryAmountFormat} is available given a {@link javax.money.format * .AmountFormatQuery}. * * @param locale the target {@link java.util.Locale}, not {@code null}. * @param providers The (optional) providers to be used, ordered correspondingly. * @return true, if a t least one {@link javax.money.format.MonetaryAmountFormat} is matching the query. */ public boolean isAvailable(Locale locale, String... providers) { return isAvailable(AmountFormatQuery.of(locale, providers)); } /** * Access the default {@link javax.money.format.MonetaryAmountFormat} given a {@link java.util.Locale}. * * @param locale the target {@link java.util.Locale}, not {@code null}. * @param providers The (optional) providers to be used, oredered correspondingly. * @return the matching {@link javax.money.format.MonetaryAmountFormat} * @throws javax.money.MonetaryException if no registered {@link javax.money.spi.MonetaryAmountFormatProviderSpi} can provide a * corresponding {@link javax.money.format.MonetaryAmountFormat} instance. */ public MonetaryAmountFormat getAmountFormat(Locale locale, String... providers) { return getAmountFormat(AmountFormatQueryBuilder.of(locale).setProviderNames(providers).build()); } /** * Access the default {@link javax.money.format.MonetaryAmountFormat} given a {@link java.util.Locale}. * * @param formatName the target format name, not {@code null}. * @param providers The (optional) providers to be used, ordered correspondingly. * @return the matching {@link javax.money.format.MonetaryAmountFormat} * @throws javax.money.MonetaryException if no registered {@link javax.money.spi.MonetaryAmountFormatProviderSpi} can provide a * corresponding {@link javax.money.format.MonetaryAmountFormat} instance. */ public MonetaryAmountFormat getAmountFormat(String formatName, String... providers) { return getAmountFormat(AmountFormatQueryBuilder.of(formatName).setProviderNames(providers).build()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy