public final class NumberFormatOptions extends NativeObjectContainer implements IsDefaultNumberFormatOptions
setCompactDisplay(CompactDisplay) and getCompactDisplay()
setCurrencySign(CurrencySign) and getCurrencySign()
setNotation(Notation) and getNotation()
setSignDisplay(SignDisplay) and getSignDisplay()
setUnitsOfMeasure(List), setUnitsOfMeasure(MeasureUnit...) and getUnitsOfMeasure()
setUnitOfMeasureDisplay(MeasureUnitDisplay) and getUnitOfMeasureDisplay()
| Modifier and Type | Class and Description |
|---|---|
static class |
NumberFormatOptions.NumberFormatOptionsFactory
Creates a number format options by a native object and a default values instance.
|
| Modifier and Type | Field and Description |
|---|---|
static NumberFormatOptions.NumberFormatOptionsFactory |
FACTORY
Public factory to create a number format options from a native object.
|
| Constructor and Description |
|---|
NumberFormatOptions()
Creates new number format options object.
|
| Modifier and Type | Method and Description |
|---|---|
CompactDisplay |
getCompactDisplay()
Returns the compact display when
Notation.COMPACT is set.PAY ATTENTION This method is not supported on Safari. |
Currency |
getCurrency()
Returns the currency to use in currency formatting.
|
CurrencyDisplay |
getCurrencyDisplay()
Returns how to display the currency in currency formatting.
|
CurrencySign |
getCurrencySign()
In many locales, accounting format means to wrap the number with parentheses instead of appending a minus sign.
You can enable this formatting by setting the currency sign option to "accounting" otherwise "standard". PAY ATTENTION This method is not supported on Safari. |
protected D |
getDefaultValues() |
LocaleMatcher |
getLocaleMatcher()
Returns the locale matching algorithm to use.
|
int |
getMaximumFractionDigits()
Returns the maximum number of fraction digits to use.
The default for plain number formatting is the larger of getMinimumFractionDigits() and 3.The default for currency formatting is the larger of getMinimumFractionDigits() and the number of minor unit digits provided by currency, see
Currency.getMinimumFractionDigits().The default for percent formatting is the larger of getMinimumFractionDigits() and 0. |
int |
getMaximumSignificantDigits()
Returns the maximum number of significant digits to use.
|
int |
getMinimumFractionDigits()
Returns the minimum number of fraction digits to use.
The default for plain number and percent formatting is 0. The default for currency formatting is the number of minor unit digits provided by the currency, see Currency.getMinimumFractionDigits(). |
int |
getMinimumIntegerDigits()
Returns the minimum number of integer digits to use.
|
int |
getMinimumSignificantDigits()
Returns the minimum number of significant digits to use.
|
Notation |
getNotation()
Returns the formatting that should be displayed for the number.
PAY ATTENTION This method is not supported on Safari. |
NumberingSystem |
getNumberingSystem()
Returns the numbering system to use.
|
SignDisplay |
getSignDisplay()
Returns when to display the sign for the number.
PAY ATTENTION This method is not supported on Safari. |
Style |
getStyle()
Returns the formatting style to use.
|
MeasureUnitDisplay |
getUnitOfMeasureDisplay()
Returns the unit formatting style to use in unit formatting.
PAY ATTENTION This method is not supported on Safari. |
List<MeasureUnit> |
getUnitsOfMeasure()
Returns an unmodifiable list of units to use in unit formatting.
PAY ATTENTION This method is not supported on Safari. |
boolean |
isUseGrouping()
Returns
true whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators. |
void |
setCompactDisplay(CompactDisplay display)
Set the compact display when
Notation.COMPACT is set.PAY ATTENTION This method is not supported on Safari. |
void |
setCurrency(Currency currency)
Sets the currency to use in currency formatting.
|
void |
setCurrencyDisplay(CurrencyDisplay currencyDisplay)
Sets how to display the currency in currency formatting.
|
void |
setCurrencySign(CurrencySign currencySign)
In many locales, accounting format means to wrap the number with parentheses instead of appending a minus sign.
You can enable this formatting by setting the currency sign option to "accounting" otherwise "standard". PAY ATTENTION This method is not supported on Safari. |
void |
setLocaleMatcher(LocaleMatcher localeMatcher)
Sets the locale matching algorithm to use.
|
void |
setMaximumFractionDigits(int maximumFractionDigits)
Sets the maximum number of fraction digits to use.
Possible values are from 0 to 20. |
void |
setMaximumSignificantDigits(int minimumIntegerDigits)
Sets the maximum number of significant digits to use.
Possible values are from 1 to 21. |
void |
setMinimumFractionDigits(int minimumFractionDigits)
Sets the minimum number of fraction digits to use.
Possible values are from 0 to 20. |
void |
setMinimumIntegerDigits(int minimumIntegerDigits)
Sets the minimum number of integer digits to use.
Possible values are from 1 to 21. |
void |
setMinimumSignificantDigits(int minimumIntegerDigits)
Sets the minimum number of significant digits to use.
Possible values are from 1 to 21. |
void |
setNotation(Notation notation)
Sets the formatting that should be displayed for the number.
PAY ATTENTION This method is not supported on Safari. |
void |
setNumberingSystem(NumberingSystem numberingSystem)
Sets the numbering system to use.
|
void |
setSignDisplay(SignDisplay signDisplay)
Sets when to display the sign for the number.
PAY ATTENTION This method is not supported on Safari. |
void |
setStyle(Style style)
Sets the formatting style to use.
|
void |
setUnitOfMeasureDisplay(MeasureUnitDisplay unitDisplay)
Sets the unit formatting style to use in unit formatting.
PAY ATTENTION This method is not supported on Safari. |
void |
setUnitsOfMeasure(List<MeasureUnit> units)
Sets the unit to use in unit formatting.
If more that 1 unit has been passed, a compound unit has been created. PAY ATTENTION This method is not supported on Safari. |
void |
setUnitsOfMeasure(MeasureUnit... units)
Sets the unit to use in unit formatting.
If more that 1 unit has been passed, a compound unit has been created. PAY ATTENTION This method is not supported on Safari. |
void |
setUseGrouping(boolean useGrouping)
Sets
true whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators. |
checkDefaultValuesArgument, empty, getArrayValue, getIncrementalId, getNativeChart, getNativeEvent, getNativeObject, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValueForMultipleKeyTypes, getValueForMultipleKeyTypes, getValueForMultipleKeyTypes, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, has, has, isType, keys, loadNativeObject, remove, remove, setArrayValue, setArrayValue, setArrayValue, setEmptyValue, setNewIncrementalId, setNewIncrementalId, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, toJSON, typeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetLocaleMatcher, getNumberingSystempublic static final NumberFormatOptions.NumberFormatOptionsFactory FACTORY
public NumberFormatOptions()
public void setCompactDisplay(CompactDisplay display)
Notation.COMPACT is set.display - the compact display when Notation.COMPACT is setpublic CompactDisplay getCompactDisplay()
Notation.COMPACT is set.getCompactDisplay in interface IsDefaultNumberFormatOptionsNotation.COMPACT is setpublic void setCurrency(Currency currency)
currency - the currency to use in currency formattingpublic Currency getCurrency()
getCurrency in interface IsDefaultNumberFormatOptionspublic void setCurrencyDisplay(CurrencyDisplay currencyDisplay)
currencyDisplay - how to display the currency in currency formattingpublic CurrencyDisplay getCurrencyDisplay()
getCurrencyDisplay in interface IsDefaultNumberFormatOptionspublic void setCurrencySign(CurrencySign currencySign)
currencySign - the currency format to use on formattingpublic CurrencySign getCurrencySign()
getCurrencySign in interface IsDefaultNumberFormatOptionspublic void setNotation(Notation notation)
notation - the formatting that should be displayed for the numberpublic Notation getNotation()
getNotation in interface IsDefaultNumberFormatOptionspublic void setSignDisplay(SignDisplay signDisplay)
signDisplay - when to display the sign for the numberpublic SignDisplay getSignDisplay()
getSignDisplay in interface IsDefaultNumberFormatOptionspublic void setStyle(Style style)
style - the formatting style to usepublic Style getStyle()
getStyle in interface IsDefaultNumberFormatOptionspublic void setUnitsOfMeasure(MeasureUnit... units)
units - the units to use in units formattingpublic void setUnitsOfMeasure(List<MeasureUnit> units)
units - the units to use in units formattingpublic List<MeasureUnit> getUnitsOfMeasure()
getUnitsOfMeasure in interface IsDefaultNumberFormatOptionspublic void setUnitOfMeasureDisplay(MeasureUnitDisplay unitDisplay)
unitDisplay - the unit formatting style to use in unit formattingpublic MeasureUnitDisplay getUnitOfMeasureDisplay()
getUnitOfMeasureDisplay in interface IsDefaultNumberFormatOptionspublic void setUseGrouping(boolean useGrouping)
true whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators.useGrouping - true whether to use grouping separators, such as thousands separators or thousand/lakh/crore separatorspublic boolean isUseGrouping()
true whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators.isUseGrouping in interface IsDefaultNumberFormatOptionstrue whether to use grouping separators, such as thousands separators or thousand/lakh/crore separatorspublic void setMinimumIntegerDigits(int minimumIntegerDigits)
minimumIntegerDigits - the minimum number of integer digits to usepublic int getMinimumIntegerDigits()
getMinimumIntegerDigits in interface IsDefaultNumberFormatOptionspublic void setMinimumFractionDigits(int minimumFractionDigits)
minimumFractionDigits - the minimum number of fraction digits to usepublic int getMinimumFractionDigits()
Currency.getMinimumFractionDigits().getMinimumFractionDigits in interface IsDefaultNumberFormatOptionsCurrency.getMinimumFractionDigits()public void setMaximumFractionDigits(int maximumFractionDigits)
maximumFractionDigits - the maximum number of fraction digits to usepublic int getMaximumFractionDigits()
getMinimumFractionDigits() and 3.getMinimumFractionDigits() and the number of minor unit digits provided by currency, see
Currency.getMinimumFractionDigits().getMinimumFractionDigits() and 0.getMaximumFractionDigits in interface IsDefaultNumberFormatOptionsgetMinimumFractionDigits() and 3.getMinimumFractionDigits() and the number of minor unit digits provided by currency,
see Currency.getMinimumFractionDigits().getMinimumFractionDigits() and 0.public void setMinimumSignificantDigits(int minimumIntegerDigits)
minimumIntegerDigits - the minimum number of significant digits to usepublic int getMinimumSignificantDigits()
getMinimumSignificantDigits in interface IsDefaultNumberFormatOptionspublic void setMaximumSignificantDigits(int minimumIntegerDigits)
minimumIntegerDigits - the maximum number of significant digits to usepublic int getMaximumSignificantDigits()
getMaximumSignificantDigits in interface IsDefaultNumberFormatOptionsprotected final D getDefaultValues()
public final void setLocaleMatcher(LocaleMatcher localeMatcher)
localeMatcher - the locale matching algorithm to usepublic final LocaleMatcher getLocaleMatcher()
getLocaleMatcher in interface IsDefaultBaseFormatOptionspublic final void setNumberingSystem(NumberingSystem numberingSystem)
numberingSystem - the numbering system to usepublic final NumberingSystem getNumberingSystem()
getNumberingSystem in interface IsDefaultBaseFormatOptions