Java com.google.gwt.i18n.client NumberFormat fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.i18n.client NumberFormat fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.i18n.client NumberFormat.

The text is from its open source code.

Method

Stringformat(double number)
This method formats a double to produce a string.
Stringformat(Number number)
This method formats a Number to produce a string.
NumberFormatgetCurrencyFormat()
Provides the standard currency format for the default locale.
NumberFormatgetCurrencyFormat(CurrencyData currencyData)
Provides the standard currency format for the default locale using a specified currency.
NumberFormatgetCurrencyFormat(String currencyCode)
Provides the standard currency format for the default locale using a specified currency.
NumberFormatgetDecimalFormat()
Provides the standard decimal format for the default locale.
NumberFormatgetFormat(String pattern)
Gets a NumberFormat instance for the default locale using the specified pattern and the default currencyCode.
NumberFormatgetPercentFormat()
Provides the standard percent format for the default locale.
NumberFormatgetScientificFormat()
Provides the standard scientific format for the default locale.
doubleparse(String text)
Parses text to produce a numeric value.
voidsetForcedLatinDigits(boolean useLatinDigits)
Specify whether all new NumberFormat instances will use latin digits and related characters rather than the localized ones.