mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-13402 Adding pointer to NumberFormatter from classes that it replaces.
X-SVN-Rev: 41000
This commit is contained in:
parent
7f1a29ed4c
commit
e18dd19a9e
4 changed files with 35 additions and 1 deletions
|
@ -13,10 +13,20 @@ import java.text.ParsePosition;
|
|||
import java.util.Locale;
|
||||
|
||||
import com.ibm.icu.impl.number.DecimalFormatProperties;
|
||||
import com.ibm.icu.number.NumberFormatter;
|
||||
import com.ibm.icu.util.CurrencyAmount;
|
||||
import com.ibm.icu.util.ULocale;
|
||||
|
||||
/**
|
||||
* Formats numbers in compact (abbreviated) notation, like "1.2K" instead of "1200".
|
||||
*
|
||||
* <p>
|
||||
* <strong>IMPORTANT:</strong> New users are strongly encouraged to see if
|
||||
* {@link NumberFormatter} fits their use case. Although not deprecated, this
|
||||
* class, CompactDecimalFormat, is on life support and is provided for
|
||||
* backwards compatibility only.
|
||||
* <hr>
|
||||
*
|
||||
* The CompactDecimalFormat produces abbreviated numbers, suitable for display in environments will
|
||||
* limited real estate. For example, 'Hits: 1.2B' instead of 'Hits: 1,200,000,000'. The format will
|
||||
* be appropriate for the given language, such as "1,2 Mrd." for German.
|
||||
|
|
|
@ -34,7 +34,16 @@ import com.ibm.icu.util.ULocale;
|
|||
import com.ibm.icu.util.ULocale.Category;
|
||||
|
||||
/**
|
||||
* {@icuenhanced java.text.DecimalFormat}.{@icu _usage_} <code>DecimalFormat</code> is the primary
|
||||
* {@icuenhanced java.text.DecimalFormat}.{@icu _usage_}
|
||||
*
|
||||
* <p>
|
||||
* <strong>IMPORTANT:</strong> New users are strongly encouraged to see if
|
||||
* {@link NumberFormatter} fits their use case. Although not deprecated, this
|
||||
* class, DecimalFormat, is on life support and is only provided for
|
||||
* java.text.DecimalFormat compatibility.
|
||||
* <hr>
|
||||
*
|
||||
* <code>DecimalFormat</code> is the primary
|
||||
* concrete subclass of {@link NumberFormat}. It has a variety of features designed to make it
|
||||
* possible to parse and format numbers in any locale, including support for Western, Arabic, or
|
||||
* Indic digits. It supports different flavors of numbers, including integers ("123"), fixed-point
|
||||
|
|
|
@ -56,6 +56,13 @@ import com.ibm.icu.util.UResourceBundle;
|
|||
* A formatter for Measure objects.
|
||||
*
|
||||
* <p>
|
||||
* <strong>IMPORTANT:</strong> New users are strongly encouraged to see if
|
||||
* {@link NumberFormatter} fits their use case. Although not deprecated, this
|
||||
* class, MeasureFormat, is on life support and is provided for
|
||||
* backwards compatibility only.
|
||||
* <hr>
|
||||
*
|
||||
* <p>
|
||||
* To format a Measure object, first create a formatter object using a MeasureFormat factory method. Then
|
||||
* use that object's format or formatMeasures methods.
|
||||
*
|
||||
|
|
|
@ -25,6 +25,7 @@ import java.util.Set;
|
|||
|
||||
import com.ibm.icu.impl.ICUData;
|
||||
import com.ibm.icu.impl.ICUResourceBundle;
|
||||
import com.ibm.icu.number.NumberFormatter;
|
||||
import com.ibm.icu.util.Currency;
|
||||
import com.ibm.icu.util.Currency.CurrencyUsage;
|
||||
import com.ibm.icu.util.CurrencyAmount;
|
||||
|
@ -35,6 +36,13 @@ import com.ibm.icu.util.UResourceBundle;
|
|||
/**
|
||||
* {@icuenhanced java.text.NumberFormat}.{@icu _usage_}
|
||||
*
|
||||
* <p>
|
||||
* <strong>IMPORTANT:</strong> New users are strongly encouraged to see if
|
||||
* {@link NumberFormatter} fits their use case. Although not deprecated, this
|
||||
* class, NumberFormat, is on life support and is only provided for
|
||||
* java.text.NumberFormat compatibility.
|
||||
* <hr>
|
||||
*
|
||||
* <code>NumberFormat</code> is the abstract base class for all number
|
||||
* formats. This class provides the interface for formatting and parsing
|
||||
* numbers. <code>NumberFormat</code> also provides methods for determining
|
||||
|
|
Loading…
Add table
Reference in a new issue