Java Doc for DecimalFormat.java in  » Internationalization-Localization » icu4j » com » ibm » icu » text » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Internationalization Localization » icu4j » com.ibm.icu.text 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.text.Format
      com.ibm.icu.text.UFormat
         com.ibm.icu.text.NumberFormat
            com.ibm.icu.text.DecimalFormat

DecimalFormat
public class DecimalFormat extends NumberFormat (Code)
DecimalFormat is a concrete subclass of NumberFormat that formats decimal numbers. 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 also supports different flavors of numbers, including integers ("123"), fixed-point numbers ("123.4"), scientific notation ("1.23E4"), percentages ("12%"), and currency amounts ("$123"). All of these flavors can be easily localized.

This is an enhanced version of DecimalFormat that is based on the standard version in the JDK. New or changed functionality is labeled NEW or CHANGED.

To obtain a NumberFormat for a specific locale (including the default locale) call one of NumberFormat's factory methods such as NumberFormat.getInstance . Do not call the DecimalFormat constructors directly, unless you know what you are doing, since the NumberFormat factory methods may return subclasses other than DecimalFormat. If you need to customize the format object, do something like this:

 NumberFormat f = NumberFormat.getInstance(loc);
 if (f instanceof DecimalFormat) {
 ((DecimalFormat) f).setDecimalSeparatorAlwaysShown(true);
 }

Example Usage

 // Print out a number using the localized number, currency,
 // and percent format for each locale
 Locale[] locales = NumberFormat.getAvailableLocales();
 double myNumber = -1234.56;
 NumberFormat format;
 for (int j=0; j<3; ++j) {
 System.out.println("FORMAT");
 for (int i = 0; i < locales.length; ++i) {
 if (locales[i].getCountry().length() == 0) {
 // Skip language-only locales
 continue;
 }
 System.out.print(locales[i].getDisplayName());
 switch (j) {
 case 0:
 format = NumberFormat.getInstance(locales[i]); break;
 case 1:
 format = NumberFormat.getCurrencyInstance(locales[i]); break;
 default:
 format = NumberFormat.getPercentInstance(locales[i]); break;
 }
 try {
 // Assume format is a DecimalFormat
 System.out.print(": " + ((DecimalFormat) format).toPattern()
 + " -> " + form.format(myNumber));
 } catch (Exception e) {}
 try {
 System.out.println(" -> " + format.parse(form.format(myNumber)));
 } catch (ParseException e) {}
 }
 }

Patterns

A DecimalFormat consists of a pattern and a set of symbols. The pattern may be set directly using DecimalFormat.applyPattern , or indirectly using other API methods which manipulate aspects of the pattern, such as the minimum number of integer digits. The symbols are stored in a DecimalFormatSymbols object. When using the NumberFormat factory methods, the pattern and symbols are read from ICU's locale data.

Special Pattern Characters

Many characters in a pattern are taken literally; they are matched during parsing and output unchanged during formatting. Special characters, on the other hand, stand for other characters, strings, or classes of characters. For example, the '#' character is replaced by a localized digit. Often the replacement character is the same as the pattern character; in the U.S. locale, the ',' grouping character is replaced by ','. However, the replacement is still happening, and if the symbols are modified, the grouping character changes. Some special characters affect the behavior of the formatter by their presence; for example, if the percent character is seen, then the value is multiplied by 100 before being displayed.

To insert a special character in a pattern as a literal, that is, without any special meaning, the character must be quoted. There are some exceptions to this which are noted below.

The characters listed here are used in non-localized patterns. Localized patterns use the corresponding characters taken from this formatter's DecimalFormatSymbols object instead, and these characters lose their special status. Two exceptions are the currency sign and quote, which are not localized.

Symbol Location Localized? Meaning
0 Number Yes Digit
1-9 Number Yes NEW '1' through '9' indicate rounding.
@ Number No NEW Significant digit
# Number Yes Digit, zero shows as absent
. Number Yes Decimal separator or monetary decimal separator
- Number Yes Minus sign
, Number Yes Grouping separator
E Number Yes Separates mantissa and exponent in scientific notation. Need not be quoted in prefix or suffix.
+ Exponent Yes NEW Prefix positive exponents with localized plus sign. Need not be quoted in prefix or suffix.
; Subpattern boundary Yes Separates positive and negative subpatterns
% Prefix or suffix Yes Multiply by 100 and show as percentage
\u2030 Prefix or suffix Yes Multiply by 1000 and show as per mille
¤ (\u00A4) Prefix or suffix No Currency sign, replaced by currency symbol. If doubled, replaced by international currency symbol. If present in a pattern, the monetary decimal separator is used instead of the decimal separator.
' Prefix or suffix No Used to quote special characters in a prefix or suffix, for example, "'#'#" formats 123 to "#123". To create a single quote itself, use two in a row: "# o''clock".
* Prefix or suffix boundary Yes NEW Pad escape, precedes pad character

A DecimalFormat pattern contains a postive and negative subpattern, for example, "#,##0.00;(#,##0.00)". Each subpattern has a prefix, a numeric part, and a suffix. If there is no explicit negative subpattern, the negative subpattern is the localized minus sign prefixed to the positive subpattern. That is, "0.00" alone is equivalent to "0.00;-0.00". If there is an explicit negative subpattern, it serves only to specify the negative prefix and suffix; the number of digits, minimal digits, and other characteristics are ignored in the negative subpattern. That means that "#,##0.0#;(#)" has precisely the same result as "#,##0.0#;(#,##0.0#)".

The prefixes, suffixes, and various symbols used for infinity, digits, thousands separators, decimal separators, etc. may be set to arbitrary values, and they will appear properly during formatting. However, care must be taken that the symbols and strings do not conflict, or parsing will be unreliable. For example, either the positive and negative prefixes or the suffixes must be distinct for DecimalFormat.parse to be able to distinguish positive from negative values. Another example is that the decimal separator and thousands separator should be distinct characters, or parsing will be impossible.

The grouping separator is a character that separates clusters of integer digits to make large numbers more legible. It commonly used for thousands, but in some locales it separates ten-thousands. The grouping size is the number of digits between the grouping separators, such as 3 for "100,000,000" or 4 for "1 0000 0000". There are actually two different grouping sizes: One used for the least significant integer digits, the primary grouping size, and one used for all others, the secondary grouping size. In most locales these are the same, but sometimes they are different. For example, if the primary grouping interval is 3, and the secondary is 2, then this corresponds to the pattern "#,##,##0", and the number 123456789 is formatted as "12,34,56,789". If a pattern contains multiple grouping separators, the interval between the last one and the end of the integer defines the primary grouping size, and the interval between the last two defines the secondary grouping size. All others are ignored, so "#,##,###,####" == "###,###,####" == "##,#,###,####".

Illegal patterns, such as "#.#.#" or "#.###,###", will cause DecimalFormat to throw an IllegalArgumentException with a message that describes the problem.

Pattern BNF

 pattern    := subpattern (';' subpattern)?
 subpattern := prefix? number exponent? suffix?
 number     := (integer ('.' fraction)?) | sigDigits
 prefix     := '\u0000'..'\uFFFD' - specialCharacters
 suffix     := '\u0000'..'\uFFFD' - specialCharacters
 integer    := '#'* '0'* '0'
 fraction   := '0'* '#'*
 sigDigits  := '#'* '@' '@'* '#'*
 exponent   := 'E' '+'? '0'* '0'
 padSpec    := '*' padChar
 padChar    := '\u0000'..'\uFFFD' - quote
  
 Notation:
 X*       0 or more instances of X
 X?       0 or 1 instances of X
 X|Y      either X or Y
 C..D     any character from C up to D, inclusive
 S-T      characters in S, except those in T
 
The first subpattern is for positive numbers. The second (optional) subpattern is for negative numbers.

Not indicated in the BNF syntax above:

  • The grouping separator ',' can occur inside the integer and sigDigits elements, between any two pattern characters of that element, as long as the integer or sigDigits element is not followed by the exponent element.
  • NEW Two grouping intervals are recognized: That between the decimal point and the first grouping symbol, and that between the first and second grouping symbols. These intervals are identical in most locales, but in some locales they differ. For example, the pattern "#,##,###" formats the number 123456789 as "12,34,56,789".
  • NEW The pad specifier padSpec may appear before the prefix, after the prefix, before the suffix, after the suffix, or not at all.
  • NEW In place of '0', the digits '1' through '9' may be used to indicate a rounding increment.

Parsing

DecimalFormat parses all Unicode characters that represent decimal digits, as defined by UCharacter.digit . In addition, DecimalFormat also recognizes as digits the ten consecutive characters starting with the localized zero digit defined in the DecimalFormatSymbols object. During formatting, the DecimalFormatSymbols -based digits are output.

During parsing, grouping separators are ignored.

If DecimalFormat.parse(String,ParsePosition) fails to parse a string, it returns null and leaves the parse position unchanged. The convenience method DecimalFormat.parse(String) indicates parse failure by throwing a java.text.ParseException .

Formatting

Formatting is guided by several parameters, all of which can be specified either using a pattern or using the API. The following description applies to formats that do not use scientific notation or significant digits.

  • If the number of actual integer digits exceeds the maximum integer digits, then only the least significant digits are shown. For example, 1997 is formatted as "97" if the maximum integer digits is set to 2.
  • If the number of actual integer digits is less than the minimum integer digits, then leading zeros are added. For example, 1997 is formatted as "01997" if the minimum integer digits is set to 5.
  • If the number of actual fraction digits exceeds the maximum fraction digits, then half-even rounding it performed to the maximum fraction digits. For example, 0.125 is formatted as "0.12" if the maximum fraction digits is 2. This behavior can be changed by specifying a rounding increment and a rounding mode.
  • If the number of actual fraction digits is less than the minimum fraction digits, then trailing zeros are added. For example, 0.125 is formatted as "0.1250" if the mimimum fraction digits is set to 4.
  • Trailing fractional zeros are not displayed if they occur j positions after the decimal, where j is less than the maximum fraction digits. For example, 0.10004 is formatted as "0.1" if the maximum fraction digits is four or less.

Special Values

NaN is represented as a single character, typically \uFFFD. This character is determined by the DecimalFormatSymbols object. This is the only value for which the prefixes and suffixes are not used.

Infinity is represented as a single character, typically \u221E, with the positive or negative prefixes and suffixes applied. The infinity character is determined by the DecimalFormatSymbols object.

Scientific Notation

Numbers in scientific notation are expressed as the product of a mantissa and a power of ten, for example, 1234 can be expressed as 1.234 x 103. The mantissa is typically in the half-open interval [1.0, 10.0) or sometimes [0.0, 1.0), but it need not be. DecimalFormat supports arbitrary mantissas. DecimalFormat can be instructed to use scientific notation through the API or through the pattern. In a pattern, the exponent character immediately followed by one or more digit characters indicates scientific notation. Example: "0.###E0" formats the number 1234 as "1.234E3".

  • The number of digit characters after the exponent character gives the minimum exponent digit count. There is no maximum. Negative exponents are formatted using the localized minus sign, not the prefix and suffix from the pattern. This allows patterns such as "0.###E0 m/s". To prefix positive exponents with a localized plus sign, specify '+' between the exponent and the digits: "0.###E+0" will produce formats "1E+1", "1E+0", "1E-1", etc. (In localized patterns, use the localized plus sign rather than '+'.)
  • The minimum number of integer digits is achieved by adjusting the exponent. Example: 0.00123 formatted with "00.###E0" yields "12.3E-4". This only happens if there is no maximum number of integer digits. If there is a maximum, then the minimum number of integer digits is fixed at one.
  • The maximum number of integer digits, if present, specifies the exponent grouping. The most common use of this is to generate engineering notation, in which the exponent is a multiple of three, e.g., "##0.###E0". The number 12345 is formatted using "##0.####E0" as "12.345E3".
  • When using scientific notation, the formatter controls the digit counts using significant digits logic. The maximum number of significant digits limits the total number of integer and fraction digits that will be shown in the mantissa; it does not affect parsing. For example, 12345 formatted with "##0.##E0" is "12.3E3". See the section on significant digits for more details.
  • The number of significant digits shown is determined as follows: If areSignificantDigitsUsed() returns false, then the minimum number of significant digits shown is one, and the maximum number of significant digits shown is the sum of the minimum integer and maximum fraction digits, and is unaffected by the maximum integer digits. If this sum is zero, then all significant digits are shown. If areSignificantDigitsUsed() returns true, then the significant digit counts are specified by getMinimumSignificantDigits() and getMaximumSignificantDigits(). In this case, the number of integer digits is fixed at one, and there is no exponent grouping.
  • Exponential patterns may not contain grouping separators.

NEW Significant Digits

DecimalFormat has two ways of controlling how many digits are shows: (a) significant digits counts, or (b) integer and fraction digit counts. Integer and fraction digit counts are described above. When a formatter is using significant digits counts, the number of integer and fraction digits is not specified directly, and the formatter settings for these counts are ignored. Instead, the formatter uses however many integer and fraction digits are required to display the specified number of significant digits. Examples:
Pattern Minimum significant digits Maximum significant digits Number Output of format()
@@@ 3 3 12345 12300
@@@ 3 3 0.12345 0.123
@@## 2 4 3.14159 3.142
@@## 2 4 1.23004 1.23
  • Significant digit counts may be expressed using patterns that specify a minimum and maximum number of significant digits. These are indicated by the '@' and '#' characters. The minimum number of significant digits is the number of '@' characters. The maximum number of significant digits is the number of '@' characters plus the number of '#' characters following on the right. For example, the pattern "@@@" indicates exactly 3 significant digits. The pattern "@##" indicates from 1 to 3 significant digits. Trailing zero digits to the right of the decimal separator are suppressed after the minimum number of significant digits have been shown. For example, the pattern "@##" formats the number 0.1203 as "0.12".
  • If a pattern uses significant digits, it may not contain a decimal separator, nor the '0' pattern character. Patterns such as "@00" or "@.###" are disallowed.
  • Any number of '#' characters may be prepended to the left of the leftmost '@' character. These have no effect on the minimum and maximum significant digits counts, but may be used to position grouping separators. For example, "#,#@#" indicates a minimum of one significant digits, a maximum of two significant digits, and a grouping size of three.
  • In order to enable significant digits formatting, use a pattern containing the '@' pattern character. Alternatively, call DecimalFormat.setSignificantDigitsUsed setSignificantDigitsUsed(true) .
  • In order to disable significant digits formatting, use a pattern that does not contain the '@' pattern character. Alternatively, call DecimalFormat.setSignificantDigitsUsedsetSignificantDigitsUsed(false) .
  • The number of significant digits has no effect on parsing.
  • Significant digits may be used together with exponential notation. Such patterns are equivalent to a normal exponential pattern with a minimum and maximum integer digit count of one, a minimum fraction digit count of getMinimumSignificantDigits() - 1, and a maximum fraction digit count of getMaximumSignificantDigits() - 1. For example, the pattern "@@###E0" is equivalent to "0.0###E0".
  • If signficant digits are in use, then the integer and fraction digit counts, as set via the API, are ignored. If significant digits are not in use, then the signficant digit counts, as set via the API, are ignored.

NEW Padding

DecimalFormat supports padding the result of DecimalFormat.format to a specific width. Padding may be specified either through the API or through the pattern syntax. In a pattern the pad escape character, followed by a single pad character, causes padding to be parsed and formatted. The pad escape character is '*' in unlocalized patterns, and can be localized using DecimalFormatSymbols.setPadEscape . For example, "$*x#,##0.00" formats 123 to "$xx123.00", and 1234 to "$1,234.00".

  • When padding is in effect, the width of the positive subpattern, including prefix and suffix, determines the format width. For example, in the pattern "* #0 o''clock", the format width is 10.
  • The width is counted in 16-bit code units (Java chars).
  • Some parameters which usually do not matter have meaning when padding is used, because the pattern width is significant with padding. In the pattern "* ##,##,#,##0.##", the format width is 14. The initial characters "##,##," do not affect the grouping size or maximum integer digits, but they do affect the format width.
  • Padding may be inserted at one of four locations: before the prefix, after the prefix, before the suffix, or after the suffix. If padding is specified in any other location, DecimalFormat.applyPattern throws an IllegalArgumentException . If there is no prefix, before the prefix and after the prefix are equivalent, likewise for the suffix.
  • When specified in a pattern, the 16-bit char immediately following the pad escape is the pad character. This may be any character, including a special pattern character. That is, the pad escape escapes the following character. If there is no character after the pad escape, then the pattern is illegal.

NEW Rounding

DecimalFormat supports rounding to a specific increment. For example, 1230 rounded to the nearest 50 is 1250. 1.234 rounded to the nearest 0.65 is 1.3. The rounding increment may be specified through the API or in a pattern. To specify a rounding increment in a pattern, include the increment in the pattern itself. "#,#50" specifies a rounding increment of 50. "#,##0.05" specifies a rounding increment of 0.05.

  • Rounding only affects the string produced by formatting. It does not affect parsing or change any numerical values.
  • A rounding mode determines how values are rounded; see the com.ibm.icu.math.BigDecimal documentation for a description of the modes. Rounding increments specified in patterns use the default mode, com.ibm.icu.math.BigDecimal.ROUND_HALF_EVEN .
  • Some locales use rounding in their currency formats to reflect the smallest currency denomination.
  • In a pattern, digits '1' through '9' specify rounding, but otherwise behave identically to digit '0'.

Synchronization

DecimalFormat objects are not synchronized. Multiple threads should not access one formatter concurrently.
See Also:   java.text.Format
See Also:   NumberFormat
author:
   Mark Davis
author:
   Alan Liu



Field Summary
final static  intDOUBLE_FRACTION_DIGITS
    
final static  intDOUBLE_INTEGER_DIGITS
    
final static  intMAX_SCIENTIFIC_INTEGER_DIGITS
     When someone turns on scientific mode, we assume that more than this number of digits is due to flipping from some other mode that didn't restrict the maximum, and so we force 1 integer digit.
final public static  intPAD_AFTER_PREFIX
     NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted after the prefix.
final public static  intPAD_AFTER_SUFFIX
     NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted after the suffix.
final public static  intPAD_BEFORE_PREFIX
     NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted before the prefix.
final public static  intPAD_BEFORE_SUFFIX
     NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted before the suffix.
final static  charPATTERN_EXPONENT
    
final static  charPATTERN_PAD_ESCAPE
    
final static  charPATTERN_PLUS_SIGN
    
final static  charPATTERN_SIGNIFICANT_DIGIT
    
final static  intcurrentSerialVersion
    
final static  doubleroundingIncrementEpsilon
    

Constructor Summary
public  DecimalFormat()
     Create a DecimalFormat using the default pattern and symbols for the default locale.
public  DecimalFormat(String pattern)
     Create a DecimalFormat from the given pattern and the symbols for the default locale.
public  DecimalFormat(String pattern, DecimalFormatSymbols symbols)
     Create a DecimalFormat from the given pattern and symbols. Use this constructor when you need to completely customize the behavior of the format.

To obtain standard formats for a given locale, use the factory methods on NumberFormat such as getInstance or getCurrencyInstance.


Method Summary
public  voidapplyLocalizedPattern(String pattern)
     Apply the given pattern to this Format object.
public  voidapplyPattern(String pattern)
     Apply the given pattern to this Format object.
public  booleanareSignificantDigitsUsed()
     Returns true if significant digits are in use or false if integer and fraction digit counts are in use.
public  Objectclone()
     Standard override; no change in semantics.
public  booleanequals(Object obj)
    
public  StringBufferformat(double number, StringBuffer result, FieldPosition fieldPosition)
    
public  StringBufferformat(long number, StringBuffer result, FieldPosition fieldPosition)
    
public  StringBufferformat(BigInteger number, StringBuffer result, FieldPosition fieldPosition)
     NEW Format a BigInteger number.
public  StringBufferformat(java.math.BigDecimal number, StringBuffer result, FieldPosition fieldPosition)
     NEW Format a BigDecimal number.
public  StringBufferformat(BigDecimal number, StringBuffer result, FieldPosition fieldPosition)
     NEW Format a BigDecimal number.
public  AttributedCharacterIteratorformatToCharacterIterator(Object obj)
     Format the object to an attributed string, and return the corresponding iterator Overrides superclass method.
public  DecimalFormatSymbolsgetDecimalFormatSymbols()
     Returns a copy of the decimal format symbols used by this format.
protected  CurrencygetEffectiveCurrency()
     Returns the currency in effect for this formatter.
public  intgetFormatWidth()
     NEW Get the width to which the output of format() is padded.
public  intgetGroupingSize()
     Return the grouping size.
public  intgetMaximumSignificantDigits()
     Returns the maximum number of significant digits that will be displayed.
public  bytegetMinimumExponentDigits()
     NEW Return the minimum exponent digits that will be shown.
public  intgetMinimumSignificantDigits()
     Returns the minimum number of significant digits that will be displayed.
public  intgetMultiplier()
     Get the multiplier for use in percent, permill, etc.
public  StringgetNegativePrefix()
     Get the negative prefix.
public  StringgetNegativeSuffix()
     Get the negative suffix.
public  chargetPadCharacter()
     NEW Get the character used to pad to the format width.
public  intgetPadPosition()
     NEW Get the position at which padding will take place.
public  StringgetPositivePrefix()
     Get the positive prefix.
public  StringgetPositiveSuffix()
     Get the positive suffix.
public  java.math.BigDecimalgetRoundingIncrement()
     NEW Get the rounding increment.
public  intgetRoundingMode()
     NEW Get the rounding mode.
public  intgetSecondaryGroupingSize()
     Return the secondary grouping size.
public  inthashCode()
    
public  booleanisDecimalSeparatorAlwaysShown()
     Allows you to get the behavior of the decimal separator with integers.
public  booleanisExponentSignAlwaysShown()
     NEW Return whether the exponent sign is always shown.
public  booleanisParseBigDecimal()
     Returns whether DecimalFormat.parse(String,ParsePosition) method returns BigDecimal.
public  booleanisScientificNotation()
     NEW Return whether or not scientific notation is used.
final static  intmatch(String text, int pos, int ch)
     Match a single character at text[pos] and return the index of the next character upon success.
final static  intmatch(String text, int pos, String str)
     Match a string at text[pos] and return the index of the next character upon success.
public  Numberparse(String text, ParsePosition parsePosition)
     CHANGED Parse the given string, returning a Number object to represent the parsed value.
 CurrencyAmountparseCurrency(String text, ParsePosition pos)
     NEW Parses text from the given string as a CurrencyAmount.
public  voidsetCurrency(Currency theCurrency)
     Sets the Currency object used to display currency amounts.
public  voidsetDecimalFormatSymbols(DecimalFormatSymbols newSymbols)
     Sets the decimal format symbols used by this format.
public  voidsetDecimalSeparatorAlwaysShown(boolean newValue)
     Allows you to set the behavior of the decimal separator with integers. (The decimal separator will always appear with decimals.)

This only affects formatting, and only where there might be no digits after the decimal point, e.g., if true, 3456.00 -> "3,456." if false, 3456.00 -> "3456" This is independent of parsing.

public  voidsetExponentSignAlwaysShown(boolean expSignAlways)
     NEW Set whether the exponent sign is always shown.
public  voidsetFormatWidth(int width)
     NEW Set the width to which the output of format() is padded.
public  voidsetGroupingSize(int newValue)
     Set the grouping size.
public  voidsetMaximumFractionDigits(int newValue)
     Sets the maximum number of digits allowed in the fraction portion of a number.
public  voidsetMaximumIntegerDigits(int newValue)
     Sets the maximum number of digits allowed in the integer portion of a number.
public  voidsetMaximumSignificantDigits(int max)
     Sets the maximum number of significant digits that will be displayed.
public  voidsetMinimumExponentDigits(byte minExpDig)
     NEW Set the minimum exponent digits that will be shown.
public  voidsetMinimumFractionDigits(int newValue)
     Sets the minimum number of digits allowed in the fraction portion of a number.
public  voidsetMinimumIntegerDigits(int newValue)
     Sets the minimum number of digits allowed in the integer portion of a number.
public  voidsetMinimumSignificantDigits(int min)
     Sets the minimum number of significant digits that will be displayed.
public  voidsetMultiplier(int newValue)
     Set the multiplier for use in percent, permill, etc.
public  voidsetNegativePrefix(String newValue)
     Set the negative prefix.
public  voidsetNegativeSuffix(String newValue)
     Set the positive suffix.
public  voidsetPadCharacter(char padChar)
     NEW Set the character used to pad to the format width.
public  voidsetPadPosition(int padPos)
     NEW Set the position at which padding will take place.
public  voidsetParseBigDecimal(boolean value)
     Sets whether DecimalFormat.parse(String,ParsePosition) method returns BigDecimal.
public  voidsetPositivePrefix(String newValue)
     Set the positive prefix.
public  voidsetPositiveSuffix(String newValue)
     Set the positive suffix.
public  voidsetRoundingIncrement(java.math.BigDecimal newValue)
     NEW Set the rounding increment.
public  voidsetRoundingIncrement(BigDecimal newValue)
     NEW Set the rounding increment.
public  voidsetRoundingIncrement(double newValue)
     NEW Set the rounding increment.
public  voidsetRoundingMode(int roundingMode)
     NEW Set the rounding mode.
public  voidsetScientificNotation(boolean useScientific)
     NEW Set whether or not scientific notation is used.
public  voidsetSecondaryGroupingSize(int newValue)
     Set the secondary grouping size.
public  voidsetSignificantDigitsUsed(boolean useSignificantDigits)
     Sets whether significant digits are in use, or integer and fraction digit counts are in use.
public  StringtoLocalizedPattern()
     Synthesizes a localized pattern string that represents the current state of this Format object.
public  StringtoPattern()
     Synthesizes a pattern string that represents the current state of this Format object.

Field Detail
DOUBLE_FRACTION_DIGITS
final static int DOUBLE_FRACTION_DIGITS(Code)



DOUBLE_INTEGER_DIGITS
final static int DOUBLE_INTEGER_DIGITS(Code)



MAX_SCIENTIFIC_INTEGER_DIGITS
final static int MAX_SCIENTIFIC_INTEGER_DIGITS(Code)
When someone turns on scientific mode, we assume that more than this number of digits is due to flipping from some other mode that didn't restrict the maximum, and so we force 1 integer digit. We don't bother to track and see if someone is using exponential notation with more than this number, it wouldn't make sense anyway, and this is just to make sure that someone turning on scientific mode with default settings doesn't end up with lots of zeroes.



PAD_AFTER_PREFIX
final public static int PAD_AFTER_PREFIX(Code)
NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted after the prefix.
See Also:   DecimalFormat.setPadPosition
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.PAD_BEFORE_PREFIX
See Also:   DecimalFormat.PAD_BEFORE_SUFFIX
See Also:   DecimalFormat.PAD_AFTER_SUFFIX



PAD_AFTER_SUFFIX
final public static int PAD_AFTER_SUFFIX(Code)
NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted after the suffix.
See Also:   DecimalFormat.setPadPosition
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.PAD_BEFORE_PREFIX
See Also:   DecimalFormat.PAD_AFTER_PREFIX
See Also:   DecimalFormat.PAD_BEFORE_SUFFIX



PAD_BEFORE_PREFIX
final public static int PAD_BEFORE_PREFIX(Code)
NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted before the prefix.
See Also:   DecimalFormat.setPadPosition
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.PAD_AFTER_PREFIX
See Also:   DecimalFormat.PAD_BEFORE_SUFFIX
See Also:   DecimalFormat.PAD_AFTER_SUFFIX



PAD_BEFORE_SUFFIX
final public static int PAD_BEFORE_SUFFIX(Code)
NEW Constant for getPadPosition() and setPadPosition() specifying pad characters inserted before the suffix.
See Also:   DecimalFormat.setPadPosition
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.PAD_BEFORE_PREFIX
See Also:   DecimalFormat.PAD_AFTER_PREFIX
See Also:   DecimalFormat.PAD_AFTER_SUFFIX



PATTERN_EXPONENT
final static char PATTERN_EXPONENT(Code)



PATTERN_PAD_ESCAPE
final static char PATTERN_PAD_ESCAPE(Code)



PATTERN_PLUS_SIGN
final static char PATTERN_PLUS_SIGN(Code)



PATTERN_SIGNIFICANT_DIGIT
final static char PATTERN_SIGNIFICANT_DIGIT(Code)



currentSerialVersion
final static int currentSerialVersion(Code)



roundingIncrementEpsilon
final static double roundingIncrementEpsilon(Code)




Constructor Detail
DecimalFormat
public DecimalFormat()(Code)
Create a DecimalFormat using the default pattern and symbols for the default locale. This is a convenient way to obtain a DecimalFormat when internationalization is not the main concern.

To obtain standard formats for a given locale, use the factory methods on NumberFormat such as getNumberInstance. These factories will return the most appropriate sub-class of NumberFormat for a given locale.
See Also:   NumberFormat.getInstance
See Also:   NumberFormat.getNumberInstance
See Also:   NumberFormat.getCurrencyInstance
See Also:   NumberFormat.getPercentInstance




DecimalFormat
public DecimalFormat(String pattern)(Code)
Create a DecimalFormat from the given pattern and the symbols for the default locale. This is a convenient way to obtain a DecimalFormat when internationalization is not the main concern.

To obtain standard formats for a given locale, use the factory methods on NumberFormat such as getNumberInstance. These factories will return the most appropriate sub-class of NumberFormat for a given locale.
Parameters:
  pattern - A non-localized pattern string.
exception:
  IllegalArgumentException - if the given pattern is invalid.
See Also:   NumberFormat.getInstance
See Also:   NumberFormat.getNumberInstance
See Also:   NumberFormat.getCurrencyInstance
See Also:   NumberFormat.getPercentInstance




DecimalFormat
public DecimalFormat(String pattern, DecimalFormatSymbols symbols)(Code)
Create a DecimalFormat from the given pattern and symbols. Use this constructor when you need to completely customize the behavior of the format.

To obtain standard formats for a given locale, use the factory methods on NumberFormat such as getInstance or getCurrencyInstance. If you need only minor adjustments to a standard format, you can modify the format returned by a NumberFormat factory method.
Parameters:
  pattern - a non-localized pattern string
Parameters:
  symbols - the set of symbols to be used
exception:
  IllegalArgumentException - if the given pattern is invalid
See Also:   NumberFormat.getInstance
See Also:   NumberFormat.getNumberInstance
See Also:   NumberFormat.getCurrencyInstance
See Also:   NumberFormat.getPercentInstance
See Also:   DecimalFormatSymbols





Method Detail
applyLocalizedPattern
public void applyLocalizedPattern(String pattern)(Code)
Apply the given pattern to this Format object. The pattern is assumed to be in a localized notation. A pattern is a short-hand specification for the various formatting properties. These properties can also be changed individually through the various setter methods.

There is no limit to integer digits are set by this routine, since that is the typical end-user desire; use setMaximumInteger if you want to set a real value. For negative numbers, use a second pattern, separated by a semicolon

Example "#,#00.0#" -> 1,234.56

This means a minimum of 2 integer digits, 1 fraction digit, and a maximum of 2 fraction digits.

Example: "#,#00.0#;(#,#00.0#)" for negatives in parantheses.

In negative patterns, the minimum and maximum counts are ignored; these are presumed to be set in the positive pattern.




applyPattern
public void applyPattern(String pattern)(Code)
Apply the given pattern to this Format object. A pattern is a short-hand specification for the various formatting properties. These properties can also be changed individually through the various setter methods.

There is no limit to integer digits are set by this routine, since that is the typical end-user desire; use setMaximumInteger if you want to set a real value. For negative numbers, use a second pattern, separated by a semicolon

Example "#,#00.0#" -> 1,234.56

This means a minimum of 2 integer digits, 1 fraction digit, and a maximum of 2 fraction digits.

Example: "#,#00.0#;(#,#00.0#)" for negatives in parentheses.

In negative patterns, the minimum and maximum counts are ignored; these are presumed to be set in the positive pattern.




areSignificantDigitsUsed
public boolean areSignificantDigitsUsed()(Code)
Returns true if significant digits are in use or false if integer and fraction digit counts are in use. true if significant digits are in use



clone
public Object clone()(Code)
Standard override; no change in semantics.



equals
public boolean equals(Object obj)(Code)
Overrides equals



format
public StringBuffer format(double number, StringBuffer result, FieldPosition fieldPosition)(Code)



format
public StringBuffer format(long number, StringBuffer result, FieldPosition fieldPosition)(Code)



format
public StringBuffer format(BigInteger number, StringBuffer result, FieldPosition fieldPosition)(Code)
NEW Format a BigInteger number.



format
public StringBuffer format(java.math.BigDecimal number, StringBuffer result, FieldPosition fieldPosition)(Code)
NEW Format a BigDecimal number.



format
public StringBuffer format(BigDecimal number, StringBuffer result, FieldPosition fieldPosition)(Code)
NEW Format a BigDecimal number.



formatToCharacterIterator
public AttributedCharacterIterator formatToCharacterIterator(Object obj)(Code)
Format the object to an attributed string, and return the corresponding iterator Overrides superclass method.



getDecimalFormatSymbols
public DecimalFormatSymbols getDecimalFormatSymbols()(Code)
Returns a copy of the decimal format symbols used by this format. desired DecimalFormatSymbols
See Also:   DecimalFormatSymbols



getEffectiveCurrency
protected Currency getEffectiveCurrency()(Code)
Returns the currency in effect for this formatter. Subclasses should override this method as needed. Unlike getCurrency(), this method should never return null.



getFormatWidth
public int getFormatWidth()(Code)
NEW Get the width to which the output of format() is padded. The width is counted in 16-bit code units. the format width, or zero if no padding is in effect
See Also:   DecimalFormat.setFormatWidth
See Also:   DecimalFormat.getPadCharacter
See Also:   DecimalFormat.setPadCharacter
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.setPadPosition



getGroupingSize
public int getGroupingSize()(Code)
Return the grouping size. Grouping size is the number of digits between grouping separators in the integer portion of a number. For example, in the number "123,456.78", the grouping size is 3.
See Also:   DecimalFormat.setGroupingSize
See Also:   NumberFormat.isGroupingUsed
See Also:   DecimalFormatSymbols.getGroupingSeparator



getMaximumSignificantDigits
public int getMaximumSignificantDigits()(Code)
Returns the maximum number of significant digits that will be displayed. This value has no effect unless areSignificantDigitsUsed() returns true. the most significant digits that will be shown



getMinimumExponentDigits
public byte getMinimumExponentDigits()(Code)
NEW Return the minimum exponent digits that will be shown. the minimum exponent digits that will be shown
See Also:   DecimalFormat.setScientificNotation
See Also:   DecimalFormat.isScientificNotation
See Also:   DecimalFormat.setMinimumExponentDigits
See Also:   DecimalFormat.isExponentSignAlwaysShown
See Also:   DecimalFormat.setExponentSignAlwaysShown



getMinimumSignificantDigits
public int getMinimumSignificantDigits()(Code)
Returns the minimum number of significant digits that will be displayed. This value has no effect unless areSignificantDigitsUsed() returns true. the fewest significant digits that will be shown



getMultiplier
public int getMultiplier()(Code)
Get the multiplier for use in percent, permill, etc. For a percentage, set the suffixes to have "%" and the multiplier to be 100. (For Arabic, use arabic percent symbol). For a permill, set the suffixes to have "\u2031" and the multiplier to be 1000.

Examples: with 100, 1.23 -> "123", and "123" -> 1.23




getNegativePrefix
public String getNegativePrefix()(Code)
Get the negative prefix.

Examples: -123, ($123) (with negative suffix), sFr-123




getNegativeSuffix
public String getNegativeSuffix()(Code)
Get the negative suffix.

Examples: -123%, ($123) (with positive suffixes)




getPadCharacter
public char getPadCharacter()(Code)
NEW Get the character used to pad to the format width. The default is ' '. the pad character
See Also:   DecimalFormat.setFormatWidth
See Also:   DecimalFormat.getFormatWidth
See Also:   DecimalFormat.setPadCharacter
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.setPadPosition



getPadPosition
public int getPadPosition()(Code)
NEW Get the position at which padding will take place. This is the location at which padding will be inserted if the result of format() is shorter than the format width. the pad position, one of PAD_BEFORE_PREFIX,PAD_AFTER_PREFIX, PAD_BEFORE_SUFFIX, orPAD_AFTER_SUFFIX.
See Also:   DecimalFormat.setFormatWidth
See Also:   DecimalFormat.getFormatWidth
See Also:   DecimalFormat.setPadCharacter
See Also:   DecimalFormat.getPadCharacter
See Also:   DecimalFormat.setPadPosition
See Also:   DecimalFormat.PAD_BEFORE_PREFIX
See Also:   DecimalFormat.PAD_AFTER_PREFIX
See Also:   DecimalFormat.PAD_BEFORE_SUFFIX
See Also:   DecimalFormat.PAD_AFTER_SUFFIX



getPositivePrefix
public String getPositivePrefix()(Code)
Get the positive prefix.

Examples: +123, $123, sFr123




getPositiveSuffix
public String getPositiveSuffix()(Code)
Get the positive suffix.

Example: 123%




getRoundingIncrement
public java.math.BigDecimal getRoundingIncrement()(Code)
NEW Get the rounding increment. A positive rounding increment, or null if roundingis not in effect.
See Also:   DecimalFormat.setRoundingIncrement
See Also:   DecimalFormat.getRoundingMode
See Also:   DecimalFormat.setRoundingMode



getRoundingMode
public int getRoundingMode()(Code)
NEW Get the rounding mode. A rounding mode, between BigDecimal.ROUND_UPand BigDecimal.ROUND_UNNECESSARY.
See Also:   DecimalFormat.setRoundingIncrement
See Also:   DecimalFormat.getRoundingIncrement
See Also:   DecimalFormat.setRoundingMode
See Also:   java.math.BigDecimal



getSecondaryGroupingSize
public int getSecondaryGroupingSize()(Code)
Return the secondary grouping size. In some locales one grouping interval is used for the least significant integer digits (the primary grouping size), and another is used for all others (the secondary grouping size). A formatter supporting a secondary grouping size will return a positive integer unequal to the primary grouping size returned by getGroupingSize(). For example, if the primary grouping size is 4, and the secondary grouping size is 2, then the number 123456789 formats as "1,23,45,6789", and the pattern appears as "#,##,###0". [NEW] the secondary grouping size, or a value less thanone if there is none
See Also:   DecimalFormat.setSecondaryGroupingSize
See Also:   NumberFormat.isGroupingUsed
See Also:   DecimalFormatSymbols.getGroupingSeparator



hashCode
public int hashCode()(Code)
Overrides hashCode



isDecimalSeparatorAlwaysShown
public boolean isDecimalSeparatorAlwaysShown()(Code)
Allows you to get the behavior of the decimal separator with integers. (The decimal separator will always appear with decimals.)

Example: Decimal ON: 12345 -> 12345.; OFF: 12345 -> 12345




isExponentSignAlwaysShown
public boolean isExponentSignAlwaysShown()(Code)
NEW Return whether the exponent sign is always shown. true if the exponent is always prefixed with either thelocalized minus sign or the localized plus sign, false if only negativeexponents are prefixed with the localized minus sign.
See Also:   DecimalFormat.setScientificNotation
See Also:   DecimalFormat.isScientificNotation
See Also:   DecimalFormat.setMinimumExponentDigits
See Also:   DecimalFormat.getMinimumExponentDigits
See Also:   DecimalFormat.setExponentSignAlwaysShown



isParseBigDecimal
public boolean isParseBigDecimal()(Code)
Returns whether DecimalFormat.parse(String,ParsePosition) method returns BigDecimal. true if DecimalFormat.parse(String,ParsePosition) method returns BigDecimal.



isScientificNotation
public boolean isScientificNotation()(Code)
NEW Return whether or not scientific notation is used. true if this object formats and parses scientific notation
See Also:   DecimalFormat.setScientificNotation
See Also:   DecimalFormat.getMinimumExponentDigits
See Also:   DecimalFormat.setMinimumExponentDigits
See Also:   DecimalFormat.isExponentSignAlwaysShown
See Also:   DecimalFormat.setExponentSignAlwaysShown



match
final static int match(String text, int pos, int ch)(Code)
Match a single character at text[pos] and return the index of the next character upon success. Return -1 on failure. If isRuleWhiteSpace(ch) then match a run of white space in text.



match
final static int match(String text, int pos, String str)(Code)
Match a string at text[pos] and return the index of the next character upon success. Return -1 on failure. Match a run of white space in str with a run of white space in text.



parse
public Number parse(String text, ParsePosition parsePosition)(Code)
CHANGED Parse the given string, returning a Number object to represent the parsed value. Double objects are returned to represent non-integral values which cannot be stored in a BigDecimal. These are NaN, infinity, -infinity, and -0.0. If DecimalFormat.isParseBigDecimal() is false (the default), all other values are returned as Long, BigInteger, or BigDecimal values, in that order of preference. If DecimalFormat.isParseBigDecimal() is true, all other values are returned as BigDecimal valuse. If the parse fails, null is returned.
Parameters:
  text - the string to be parsed
Parameters:
  parsePosition - defines the position where parsing is to begin,and upon return, the position where parsing left off. If the positionhas not changed upon return, then parsing failed. a Number object with the parsed value ornull if the parse failed



parseCurrency
CurrencyAmount parseCurrency(String text, ParsePosition pos)(Code)
NEW Parses text from the given string as a CurrencyAmount. Unlike the parse() method, this method will attempt to parse a generic currency name, searching for a match of this object's locale's currency display names, or for a 3-letter ISO currency code. This method will fail if this format is not a currency format, that is, if it does not contain the currency pattern symbol (U+00A4) in its prefix or suffix.
Parameters:
  text - the string to parse
Parameters:
  pos - input-output position; on input, the position withintext to match; must have 0 <= pos.getIndex() < text.length();on output, the position after the last matched character. Ifthe parse fails, the position in unchanged upon output. a CurrencyAmount, or null upon failure



setCurrency
public void setCurrency(Currency theCurrency)(Code)
Sets the Currency object used to display currency amounts. This takes effect immediately, if this format is a currency format. If this format is not a currency format, then the currency object is used if and when this object becomes a currency format through the application of a new pattern.
Parameters:
  theCurrency - new currency object to use. Must not benull.



setDecimalFormatSymbols
public void setDecimalFormatSymbols(DecimalFormatSymbols newSymbols)(Code)
Sets the decimal format symbols used by this format. The format uses a copy of the provided symbols.
Parameters:
  newSymbols - desired DecimalFormatSymbols
See Also:   DecimalFormatSymbols



setDecimalSeparatorAlwaysShown
public void setDecimalSeparatorAlwaysShown(boolean newValue)(Code)
Allows you to set the behavior of the decimal separator with integers. (The decimal separator will always appear with decimals.)

This only affects formatting, and only where there might be no digits after the decimal point, e.g., if true, 3456.00 -> "3,456." if false, 3456.00 -> "3456" This is independent of parsing. If you want parsing to stop at the decimal point, use setParseIntegerOnly.

Example: Decimal ON: 12345 -> 12345.; OFF: 12345 -> 12345




setExponentSignAlwaysShown
public void setExponentSignAlwaysShown(boolean expSignAlways)(Code)
NEW Set whether the exponent sign is always shown. This has no effect unless scientific notation is in use.
Parameters:
  expSignAlways - true if the exponent is always prefixed with eitherthe localized minus sign or the localized plus sign, false if onlynegative exponents are prefixed with the localized minus sign.
See Also:   DecimalFormat.setScientificNotation
See Also:   DecimalFormat.isScientificNotation
See Also:   DecimalFormat.setMinimumExponentDigits
See Also:   DecimalFormat.getMinimumExponentDigits
See Also:   DecimalFormat.isExponentSignAlwaysShown



setFormatWidth
public void setFormatWidth(int width)(Code)
NEW Set the width to which the output of format() is padded. The width is counted in 16-bit code units. This method also controls whether padding is enabled.
Parameters:
  width - the width to which to pad the result offormat(), or zero to disable padding
exception:
  IllegalArgumentException - if width is < 0
See Also:   DecimalFormat.getFormatWidth
See Also:   DecimalFormat.getPadCharacter
See Also:   DecimalFormat.setPadCharacter
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.setPadPosition



setGroupingSize
public void setGroupingSize(int newValue)(Code)
Set the grouping size. Grouping size is the number of digits between grouping separators in the integer portion of a number. For example, in the number "123,456.78", the grouping size is 3.
See Also:   DecimalFormat.getGroupingSize
See Also:   NumberFormat.setGroupingUsed
See Also:   DecimalFormatSymbols.setGroupingSeparator



setMaximumFractionDigits
public void setMaximumFractionDigits(int newValue)(Code)
Sets the maximum number of digits allowed in the fraction portion of a number. This override limits the fraction digit count to 340.
See Also:   NumberFormat.setMaximumFractionDigits



setMaximumIntegerDigits
public void setMaximumIntegerDigits(int newValue)(Code)
Sets the maximum number of digits allowed in the integer portion of a number. This override limits the integer digit count to 309.
See Also:   NumberFormat.setMaximumIntegerDigits



setMaximumSignificantDigits
public void setMaximumSignificantDigits(int max)(Code)
Sets the maximum number of significant digits that will be displayed. If max is less than one then it is set to one. If the minimum significant digits count is greater than max, then it is set to max. This value has no effect unless areSignificantDigitsUsed() returns true.
Parameters:
  max - the most significant digits to be shown



setMinimumExponentDigits
public void setMinimumExponentDigits(byte minExpDig)(Code)
NEW Set the minimum exponent digits that will be shown. This has no effect unless scientific notation is in use.
Parameters:
  minExpDig - a value >= 1 indicating the fewest exponent digitsthat will be shown
exception:
  IllegalArgumentException - if minExpDig < 1
See Also:   DecimalFormat.setScientificNotation
See Also:   DecimalFormat.isScientificNotation
See Also:   DecimalFormat.getMinimumExponentDigits
See Also:   DecimalFormat.isExponentSignAlwaysShown
See Also:   DecimalFormat.setExponentSignAlwaysShown



setMinimumFractionDigits
public void setMinimumFractionDigits(int newValue)(Code)
Sets the minimum number of digits allowed in the fraction portion of a number. This override limits the fraction digit count to 340.
See Also:   NumberFormat.setMinimumFractionDigits



setMinimumIntegerDigits
public void setMinimumIntegerDigits(int newValue)(Code)
Sets the minimum number of digits allowed in the integer portion of a number. This override limits the integer digit count to 309.
See Also:   NumberFormat.setMinimumIntegerDigits



setMinimumSignificantDigits
public void setMinimumSignificantDigits(int min)(Code)
Sets the minimum number of significant digits that will be displayed. If min is less than one then it is set to one. If the maximum significant digits count is less than min, then it is set to min. This value has no effect unless areSignificantDigitsUsed() returns true.
Parameters:
  min - the fewest significant digits to be shown



setMultiplier
public void setMultiplier(int newValue)(Code)
Set the multiplier for use in percent, permill, etc. For a percentage, set the suffixes to have "%" and the multiplier to be 100. (For Arabic, use arabic percent symbol). For a permill, set the suffixes to have "\u2031" and the multiplier to be 1000.

Examples: with 100, 1.23 -> "123", and "123" -> 1.23




setNegativePrefix
public void setNegativePrefix(String newValue)(Code)
Set the negative prefix.

Examples: -123, ($123) (with negative suffix), sFr-123




setNegativeSuffix
public void setNegativeSuffix(String newValue)(Code)
Set the positive suffix.

Examples: 123%




setPadCharacter
public void setPadCharacter(char padChar)(Code)
NEW Set the character used to pad to the format width. If padding is not enabled, then this will take effect if padding is later enabled.
Parameters:
  padChar - the pad character
See Also:   DecimalFormat.setFormatWidth
See Also:   DecimalFormat.getFormatWidth
See Also:   DecimalFormat.getPadCharacter
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.setPadPosition



setPadPosition
public void setPadPosition(int padPos)(Code)
NEW Set the position at which padding will take place. This is the location at which padding will be inserted if the result of format() is shorter than the format width. This has no effect unless padding is enabled.
Parameters:
  padPos - the pad position, one of PAD_BEFORE_PREFIX,PAD_AFTER_PREFIX, PAD_BEFORE_SUFFIX, orPAD_AFTER_SUFFIX.
exception:
  IllegalArgumentException - if the pad position inunrecognized
See Also:   DecimalFormat.setFormatWidth
See Also:   DecimalFormat.getFormatWidth
See Also:   DecimalFormat.setPadCharacter
See Also:   DecimalFormat.getPadCharacter
See Also:   DecimalFormat.getPadPosition
See Also:   DecimalFormat.PAD_BEFORE_PREFIX
See Also:   DecimalFormat.PAD_AFTER_PREFIX
See Also:   DecimalFormat.PAD_BEFORE_SUFFIX
See Also:   DecimalFormat.PAD_AFTER_SUFFIX



setParseBigDecimal
public void setParseBigDecimal(boolean value)(Code)
Sets whether DecimalFormat.parse(String,ParsePosition) method returns BigDecimal. The default value is false.
Parameters:
  value - true if DecimalFormat.parse(String,ParsePosition) method returnsBigDecimal.



setPositivePrefix
public void setPositivePrefix(String newValue)(Code)
Set the positive prefix.

Examples: +123, $123, sFr123




setPositiveSuffix
public void setPositiveSuffix(String newValue)(Code)
Set the positive suffix.

Example: 123%




setRoundingIncrement
public void setRoundingIncrement(java.math.BigDecimal newValue)(Code)
NEW Set the rounding increment. This method also controls whether rounding is enabled.
Parameters:
  newValue - A positive rounding increment, or null orBigDecimal(0.0) to disable rounding.
exception:
  IllegalArgumentException - if newValue is < 0.0
See Also:   DecimalFormat.getRoundingIncrement
See Also:   DecimalFormat.getRoundingMode
See Also:   DecimalFormat.setRoundingMode



setRoundingIncrement
public void setRoundingIncrement(BigDecimal newValue)(Code)
NEW Set the rounding increment. This method also controls whether rounding is enabled.
Parameters:
  newValue - A positive rounding increment, or null orBigDecimal(0.0) to disable rounding.
exception:
  IllegalArgumentException - if newValue is < 0.0
See Also:   DecimalFormat.getRoundingIncrement
See Also:   DecimalFormat.getRoundingMode
See Also:   DecimalFormat.setRoundingMode



setRoundingIncrement
public void setRoundingIncrement(double newValue)(Code)
NEW Set the rounding increment. This method also controls whether rounding is enabled.
Parameters:
  newValue - A positive rounding increment, or 0.0 to disablerounding.
exception:
  IllegalArgumentException - if newValue is < 0.0
See Also:   DecimalFormat.getRoundingIncrement
See Also:   DecimalFormat.getRoundingMode
See Also:   DecimalFormat.setRoundingMode



setRoundingMode
public void setRoundingMode(int roundingMode)(Code)
NEW Set the rounding mode. This has no effect unless the rounding increment is greater than zero.
Parameters:
  roundingMode - A rounding mode, betweenBigDecimal.ROUND_UP andBigDecimal.ROUND_UNNECESSARY.
exception:
  IllegalArgumentException - if roundingModeis unrecognized.
See Also:   DecimalFormat.setRoundingIncrement
See Also:   DecimalFormat.getRoundingIncrement
See Also:   DecimalFormat.getRoundingMode
See Also:   java.math.BigDecimal



setScientificNotation
public void setScientificNotation(boolean useScientific)(Code)
NEW Set whether or not scientific notation is used. When scientific notation is used, the effective maximum number of integer digits is <= 8. If the maximum number of integer digits is set to more than 8, the effective maximum will be 1. This allows this call to generate a 'default' scientific number format without additional changes.
Parameters:
  useScientific - true if this object formats and parses scientificnotation
See Also:   DecimalFormat.isScientificNotation
See Also:   DecimalFormat.getMinimumExponentDigits
See Also:   DecimalFormat.setMinimumExponentDigits
See Also:   DecimalFormat.isExponentSignAlwaysShown
See Also:   DecimalFormat.setExponentSignAlwaysShown



setSecondaryGroupingSize
public void setSecondaryGroupingSize(int newValue)(Code)
Set the secondary grouping size. If set to a value less than 1, then secondary grouping is turned off, and the primary grouping size is used for all intervals, not just the least significant. [NEW]
See Also:   DecimalFormat.getSecondaryGroupingSize
See Also:   NumberFormat.setGroupingUsed
See Also:   DecimalFormatSymbols.setGroupingSeparator



setSignificantDigitsUsed
public void setSignificantDigitsUsed(boolean useSignificantDigits)(Code)
Sets whether significant digits are in use, or integer and fraction digit counts are in use.
Parameters:
  useSignificantDigits - true to use significant digits, orfalse to use integer and fraction digit counts



toLocalizedPattern
public String toLocalizedPattern()(Code)
Synthesizes a localized pattern string that represents the current state of this Format object.
See Also:   DecimalFormat.applyPattern



toPattern
public String toPattern()(Code)
Synthesizes a pattern string that represents the current state of this Format object.
See Also:   DecimalFormat.applyPattern



Fields inherited from com.ibm.icu.text.NumberFormat
final public static int FRACTION_FIELD(Code)(Java Doc)
final public static int INTEGER_FIELD(Code)(Java Doc)
final static int currentSerialVersion(Code)(Java Doc)

Methods inherited from com.ibm.icu.text.NumberFormat
public Object clone()(Code)(Java Doc)
static NumberFormat createInstance(ULocale desiredLocale, int choice)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public StringBuffer format(Object number, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
final public String format(double number)(Code)(Java Doc)
final public String format(long number)(Code)(Java Doc)
final public String format(BigInteger number)(Code)(Java Doc)
final public String format(java.math.BigDecimal number)(Code)(Java Doc)
final public String format(com.ibm.icu.math.BigDecimal number)(Code)(Java Doc)
final public String format(CurrencyAmount currAmt)(Code)(Java Doc)
abstract public StringBuffer format(double number, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
abstract public StringBuffer format(long number, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
abstract public StringBuffer format(BigInteger number, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
abstract public StringBuffer format(java.math.BigDecimal number, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
abstract public StringBuffer format(com.ibm.icu.math.BigDecimal number, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
public StringBuffer format(CurrencyAmount currAmt, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
public static Locale[] getAvailableLocales()(Code)(Java Doc)
public static ULocale[] getAvailableULocales()(Code)(Java Doc)
public Currency getCurrency()(Code)(Java Doc)
final public static NumberFormat getCurrencyInstance()(Code)(Java Doc)
public static NumberFormat getCurrencyInstance(Locale inLocale)(Code)(Java Doc)
public static NumberFormat getCurrencyInstance(ULocale inLocale)(Code)(Java Doc)
protected Currency getEffectiveCurrency()(Code)(Java Doc)
final public static NumberFormat getInstance()(Code)(Java Doc)
public static NumberFormat getInstance(Locale inLocale)(Code)(Java Doc)
public static NumberFormat getInstance(ULocale inLocale)(Code)(Java Doc)
final public static NumberFormat getIntegerInstance()(Code)(Java Doc)
public static NumberFormat getIntegerInstance(Locale inLocale)(Code)(Java Doc)
public static NumberFormat getIntegerInstance(ULocale inLocale)(Code)(Java Doc)
public int getMaximumFractionDigits()(Code)(Java Doc)
public int getMaximumIntegerDigits()(Code)(Java Doc)
public int getMinimumFractionDigits()(Code)(Java Doc)
public int getMinimumIntegerDigits()(Code)(Java Doc)
final public static NumberFormat getNumberInstance()(Code)(Java Doc)
public static NumberFormat getNumberInstance(Locale inLocale)(Code)(Java Doc)
public static NumberFormat getNumberInstance(ULocale inLocale)(Code)(Java Doc)
protected static String getPattern(Locale forLocale, int choice)(Code)(Java Doc)
protected static String getPattern(ULocale forLocale, int choice)(Code)(Java Doc)
final public static NumberFormat getPercentInstance()(Code)(Java Doc)
public static NumberFormat getPercentInstance(Locale inLocale)(Code)(Java Doc)
public static NumberFormat getPercentInstance(ULocale inLocale)(Code)(Java Doc)
final public static NumberFormat getScientificInstance()(Code)(Java Doc)
public static NumberFormat getScientificInstance(Locale inLocale)(Code)(Java Doc)
public static NumberFormat getScientificInstance(ULocale inLocale)(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isGroupingUsed()(Code)(Java Doc)
public boolean isParseIntegerOnly()(Code)(Java Doc)
public boolean isParseStrict()(Code)(Java Doc)
abstract public Number parse(String text, ParsePosition parsePosition)(Code)(Java Doc)
public Number parse(String text) throws ParseException(Code)(Java Doc)
CurrencyAmount parseCurrency(String text, ParsePosition pos)(Code)(Java Doc)
final public Object parseObject(String source, ParsePosition parsePosition)(Code)(Java Doc)
public static Object registerFactory(NumberFormatFactory factory)(Code)(Java Doc)
public void setCurrency(Currency theCurrency)(Code)(Java Doc)
public void setGroupingUsed(boolean newValue)(Code)(Java Doc)
public void setMaximumFractionDigits(int newValue)(Code)(Java Doc)
public void setMaximumIntegerDigits(int newValue)(Code)(Java Doc)
public void setMinimumFractionDigits(int newValue)(Code)(Java Doc)
public void setMinimumIntegerDigits(int newValue)(Code)(Java Doc)
public void setParseIntegerOnly(boolean value)(Code)(Java Doc)
public void setParseStrict(boolean value)(Code)(Java Doc)
public static boolean unregister(Object registryKey)(Code)(Java Doc)

Methods inherited from com.ibm.icu.text.UFormat
final public ULocale getLocale(ULocale.Type type)(Code)(Java Doc)
final void setLocale(ULocale valid, ULocale actual)(Code)(Java Doc)

Methods inherited from java.text.Format
public Object clone()(Code)(Java Doc)
final public String format(Object obj)(Code)(Java Doc)
abstract public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)(Code)(Java Doc)
public AttributedCharacterIterator formatToCharacterIterator(Object obj)(Code)(Java Doc)
abstract public Object parseObject(String source, ParsePosition pos)(Code)(Java Doc)
public Object parseObject(String source) throws ParseException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.