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

javax.money.format.AmountFormatQuery Maven / Gradle / Ivy

Go to download

JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency. This module provides a forward compatible backport of the API.

There is a newer version: 1.0.4
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 javax.money.format;

import java.util.Locale;

import javax.money.AbstractQuery;
import javax.money.MonetaryAmountFactory;
import javax.money.Monetary;

/**
 * Query for accessing instances of {@link MonetaryAmountFormat}. In general it is determined by the
 * implementation, what formats are provided. Nevertheless the following queries must be supported:
 * 
    *
  • Accessing a format based on a Locale, that is also supported by {@link java.text * .DecimalFormat#getAvailableLocales()}.
  • *
* All other formats are optional. For further details about supported formats refer to the implementation's * documentation. *

* This class is immutable, thread-safe and serializable. */ public final class AmountFormatQuery extends AbstractQuery { /** * Key used for the format name attribute. */ static final String KEY_QUERY_FORMAT_NAME = "Query.formatName"; /** * Constructor, used from the Builder. * * @param builder the corresponding {@link AmountFormatQueryBuilder}, not null. */ AmountFormatQuery(AmountFormatQueryBuilder builder) { super(builder); } /** * Gets a style's id. * * @return the styleId, or null. */ public String getFormatName() { return getText(KEY_QUERY_FORMAT_NAME); } /** * Gets a Locale to be applied. * * @return the style's locale, or null. */ public Locale getLocale() { return get(Locale.class); } /** * Gets the {@link javax.money.MonetaryAmountFactoryQuery} to be used for accessing {@link MonetaryAmountFactory}, when amount's are parsed. * * @return the monetary context, or {@code null}. */ public MonetaryAmountFactory getMonetaryAmountFactory() { MonetaryAmountFactory factory = get(MonetaryAmountFactory.class); if (factory == null) { return Monetary.getDefaultAmountFactory(); } return factory; } /** * Creates a simple format query based on a singlet Locale, similar to {@link java.text.DecimalFormat#getInstance * (java.util.Locale)}. * * @param locale the target locale, not null. * @param providers the providers to be used, not null. */ public static AmountFormatQuery of(Locale locale, String... providers) { return AmountFormatQueryBuilder.of(locale).setProviderNames(providers).build(); } /** * Get a {@link AmountFormatQueryBuilder} preinitialized with this context instance. * * @return a new preinitialized builder, never null. */ public AmountFormatQueryBuilder toBuilder() { return AmountFormatQueryBuilder.of(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy