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

javax.money.format.MonetaryAmountFormat 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 javax.money.MonetaryAmount;
import javax.money.MonetaryQuery;
import java.io.IOException;

/**
 * 

* Formats instances of {@code MonetaryAmount} to a {@link String} or an {@link Appendable}. *

*

* To obtain a MonetaryAmountFormat for a specific locale, including the default * locale, call {@link MonetaryFormats#getAmountFormat(java.util.Locale, String...)}. * * More complex formatting scenarios can be implemented by registering instances of {@link javax.money.spi * .MonetaryAmountFormatProviderSpi}. * The spi implementation creates new instances of {@link MonetaryAmountFormat} based on the * styleId and (arbitrary) attributes passed within the {@link AmountFormatContext}. *

*

In general, do prefer * accessing MonetaryAmountFormat instances from the {@link MonetaryFormats} singleton, * instead of instantiating implementations directly, since the MonetaryFormats factory * method may return different subclasses or may implement contextual behaviour (in a EE context). * If you need to customize the format object, do something like this: *

*

*

*

 * MonetaryAmountFormat f = MonetaryFormats.getInstance(loc);
 * f.setStyle(f.getStyle().toBuilder().setPattern("###.##;(###.##)").build());
 * 
*

*

*

*

Special Values

*

*

* Negative zero ("-0") should always parse to *

    *
  • 0
  • *
*

*

Synchronization

*

*

* Instances of this class are not required to be thread-safe. It is recommended to of separate * format instances for each thread. If multiple threads access a format concurrently, it must be * synchronized externally. *

*

Example

*

*

*

*

 * // Print out a number using the localized number, currency,
 * // for each locale
 * Locale[] locales = MonetaryFormats.getAvailableLocales();
 * MonetaryAmount amount = ...;
 * MonetaryAmountFormat form;
 *     System.out.println("FORMAT");
 *     for (int i = 0; i < locales.length; ++i) {
 *         if (locales[i].getCountry().length() == 0) {
 *            continue; // Skip language-only locales
 *         }
 *         System.out.print(locales[i].getDisplayName());
 *         form = MonetaryFormats.getInstance(locales[i]);
 *         System.out.print(": " + form.getStyle().getPattern());
 *         String myAmount = form.format(amount);
 *         System.out.print(" -> " + myAmount);
 *         try {
 *             System.out.println(" -> " + form.parse(form.format(myAmount)));
 *         } catch (ParseException e) {}
 *     }
 * }
 * 
*

*

*/ public interface MonetaryAmountFormat extends MonetaryQuery { /** * The {@link AmountFormatContext} to be applied when a {@link javax.money.MonetaryAmount} is formatted. * * @return the {@link AmountFormatContext} used, never {@code null}. */ AmountFormatContext getContext(); /** * Formats the given {@link javax.money.MonetaryAmount} to a String. * * @param amount the amount to format, not {@code null} * @return the string printed using the settings of this formatter * @throws UnsupportedOperationException if the formatter is unable to print */ String format(MonetaryAmount amount); /** * Formats the given {@link MonetaryAmount} to a {@code Appendable}. *

* Example implementations of {@code Appendable} are {@code StringBuilder}, {@code StringBuffer} * or {@code Writer}. Note that {@code StringBuilder} and {@code StringBuffer} never throw an * {@code IOException}. * * @param appendable the appendable to add to, not null * @param amount the amount to print, not null * @throws UnsupportedOperationException if the formatter is unable to print * @throws java.io.IOException if an IO error occurs, thrown by the {@code appendable} * @throws MonetaryParseException if there is a problem while parsing */ void print(Appendable appendable, MonetaryAmount amount) throws IOException; /** * Fully parses the text into an instance of {@link MonetaryAmount}. *

* The parse must complete normally and parse the entire text. If the parse completes without * reading the entire length of the text, an exception is thrown. If any other problem occurs * during parsing, an exception is thrown. *

* Additionally the effective implementation type returned can be determined by the * {@link javax.money.MonetaryContext} applied to the {@link MonetaryAmountFormat}. * This formatter will call * {@link javax.money.Monetary#getDefaultAmountType()} and will use the result returned * to access a corresponding {@link javax.money.MonetaryAmountFactory} to of the instance * returned. * * @param text the text to parse, not null * @return the parsed value, never {@code null} * @throws UnsupportedOperationException if the formatter is unable to parse * @throws MonetaryParseException if there is a problem while parsing */ MonetaryAmount parse(CharSequence text) throws MonetaryParseException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy