mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-13551 Updating documentation of UNumberSignDisplay enum in ICU4C.
X-SVN-Rev: 40874
This commit is contained in:
parent
398b17f2b5
commit
7626d9e846
1 changed files with 9 additions and 8 deletions
|
@ -253,16 +253,17 @@ typedef enum UGroupingStrategy {
|
|||
} UGroupingStrategy;
|
||||
|
||||
/**
|
||||
* An enum declaring how to denote positive and negative numbers. Example outputs when formatting 123 and -123 in
|
||||
* <em>en-US</em>:
|
||||
* An enum declaring how to denote positive and negative numbers. Example outputs when formatting
|
||||
* 123, 0, and -123 in <em>en-US</em>:
|
||||
*
|
||||
* <p>
|
||||
* <ul>
|
||||
* <li>AUTO: "123", "-123"
|
||||
* <li>ALWAYS: "+123", "-123"
|
||||
* <li>NEVER: "123", "123"
|
||||
* <li>ACCOUNTING: "$123", "($123)"
|
||||
* <li>ACCOUNTING_ALWAYS: "+$123", "($123)"
|
||||
* <li>AUTO: "123", "0", and "-123"
|
||||
* <li>ALWAYS: "+123", "+0", and "-123"
|
||||
* <li>NEVER: "123", "0", and "123"
|
||||
* <li>ACCOUNTING: "$123", "$0", and "($123)"
|
||||
* <li>ACCOUNTING_ALWAYS: "+$123", "+$0", and "($123)"
|
||||
* <li>EXCEPT_ZERO: "+123", "0", and "-123"
|
||||
* <li>ACCOUNTING_EXCEPT_ZERO: "+$123", "$0", and "($123)"
|
||||
* </ul>
|
||||
*
|
||||
* <p>
|
||||
|
|
Loading…
Add table
Reference in a new issue