ICU-13551 Updating documentation of UNumberSignDisplay enum in ICU4C.

X-SVN-Rev: 40874
This commit is contained in:
Shane Carr 2018-02-09 00:05:24 +00:00
parent 398b17f2b5
commit 7626d9e846

View file

@ -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>