Uses of Class
java.util.Currency
-
Packages that use Currency 软件包 描述 java.text 提供用于以独立于自然语言的方式处理文本,日期,数字和消息的类和接口。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。 -
-
Uses of Currency in java.text
Methods in java.text that return Currency Modifier and Type 方法 描述 Currency
DecimalFormat. getCurrency()
在格式化货币值时获取此十进制格式使用的货币。Currency
DecimalFormatSymbols. getCurrency()
获取这些DecimalFormatSymbols的货币。Currency
NumberFormat. getCurrency()
在格式化货币值时,获取此数字格式使用的货币。Methods in java.text with parameters of type Currency Modifier and Type 方法 描述 void
DecimalFormat. setCurrency(Currency currency)
设置格式化货币值时此数字格式使用的货币。void
DecimalFormatSymbols. setCurrency(Currency currency)
设置这些DecimalFormatSymbols的货币。void
NumberFormat. setCurrency(Currency currency)
设置格式化货币值时此数字格式使用的货币。 -
Uses of Currency in java.util
Methods in java.util that return Currency Modifier and Type 方法 描述 static Currency
Currency. getInstance(String currencyCode)
返回给定货币代码的Currency
实例。static Currency
Currency. getInstance(Locale locale)
返回给定区域的国家/地区的Currency
实例。Methods in java.util that return types with arguments of type Currency Modifier and Type 方法 描述 static Set<Currency>
Currency. getAvailableCurrencies()
获得一组可用的货币。
-