2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2002-07-08 17:57:10 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 2002-2016, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2002-07-08 17:57:10 +00:00
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
#ifndef _UCURR_H_
|
|
|
|
#define _UCURR_H_
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
2005-06-16 18:44:30 +00:00
|
|
|
#include "unicode/uenum.h"
|
2002-07-08 17:57:10 +00:00
|
|
|
|
2005-06-22 22:39:36 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief C API: Encapsulates information about a currency.
|
2016-01-26 22:56:59 +00:00
|
|
|
*
|
|
|
|
* The ucurr API encapsulates information about a currency, as defined by
|
|
|
|
* ISO 4217. A currency is represented by a 3-character string
|
|
|
|
* containing its ISO 4217 code. This API can return various data
|
|
|
|
* necessary the proper display of a currency:
|
|
|
|
*
|
|
|
|
* <ul><li>A display symbol, for a specific locale
|
|
|
|
* <li>The number of fraction digits to display
|
|
|
|
* <li>A rounding increment
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
* The <tt>DecimalFormat</tt> class uses these data to display
|
|
|
|
* currencies.
|
|
|
|
* @author Alan Liu
|
|
|
|
* @since ICU 2.2
|
2005-06-22 22:39:36 +00:00
|
|
|
*/
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
|
2014-06-12 21:40:34 +00:00
|
|
|
/**
|
|
|
|
* Currency Usage used for Decimal Format
|
2015-09-17 18:25:20 +00:00
|
|
|
* @stable ICU 54
|
2014-06-12 21:40:34 +00:00
|
|
|
*/
|
|
|
|
enum UCurrencyUsage {
|
|
|
|
/**
|
|
|
|
* a setting to specify currency usage which determines currency digit
|
|
|
|
* and rounding for standard usage, for example: "50.00 NT$"
|
|
|
|
* used as DEFAULT value
|
2015-09-17 18:25:20 +00:00
|
|
|
* @stable ICU 54
|
2014-06-12 21:40:34 +00:00
|
|
|
*/
|
|
|
|
UCURR_USAGE_STANDARD=0,
|
|
|
|
/**
|
|
|
|
* a setting to specify currency usage which determines currency digit
|
|
|
|
* and rounding for cash usage, for example: "50 NT$"
|
2015-09-17 18:25:20 +00:00
|
|
|
* @stable ICU 54
|
2014-06-12 21:40:34 +00:00
|
|
|
*/
|
|
|
|
UCURR_USAGE_CASH=1,
|
2016-09-08 22:45:51 +00:00
|
|
|
#ifndef U_HIDE_DEPRECATED_API
|
2014-06-12 21:40:34 +00:00
|
|
|
/**
|
|
|
|
* One higher than the last enum UCurrencyUsage constant.
|
2016-09-08 22:45:51 +00:00
|
|
|
* @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420.
|
2014-06-12 21:40:34 +00:00
|
|
|
*/
|
2014-09-16 08:09:06 +00:00
|
|
|
UCURR_USAGE_COUNT=2
|
2016-09-08 22:45:51 +00:00
|
|
|
#endif // U_HIDE_DEPRECATED_API
|
2014-06-12 21:40:34 +00:00
|
|
|
};
|
|
|
|
typedef enum UCurrencyUsage UCurrencyUsage;
|
|
|
|
|
2002-07-08 17:57:10 +00:00
|
|
|
/**
|
2003-11-13 23:24:45 +00:00
|
|
|
* Finds a currency code for the given locale.
|
|
|
|
* @param locale the locale for which to retrieve a currency code.
|
|
|
|
* Currency can be specified by the "currency" keyword
|
|
|
|
* in which case it overrides the default currency code
|
|
|
|
* @param buff fill in buffer. Can be NULL for preflighting.
|
|
|
|
* @param buffCapacity capacity of the fill in buffer. Can be 0 for
|
|
|
|
* preflighting. If it is non-zero, the buff parameter
|
|
|
|
* must not be NULL.
|
2002-07-08 17:57:10 +00:00
|
|
|
* @param ec error code
|
2003-11-13 23:24:45 +00:00
|
|
|
* @return length of the currency string. It should always be 3. If 0,
|
|
|
|
* currency couldn't be found or the input values are
|
|
|
|
* invalid.
|
2005-06-22 23:38:06 +00:00
|
|
|
* @stable ICU 2.8
|
2002-07-08 17:57:10 +00:00
|
|
|
*/
|
2005-06-22 23:38:06 +00:00
|
|
|
U_STABLE int32_t U_EXPORT2
|
2002-07-08 17:57:10 +00:00
|
|
|
ucurr_forLocale(const char* locale,
|
2003-11-13 23:24:45 +00:00
|
|
|
UChar* buff,
|
|
|
|
int32_t buffCapacity,
|
2002-07-08 17:57:10 +00:00
|
|
|
UErrorCode* ec);
|
|
|
|
|
|
|
|
/**
|
2003-04-11 20:02:25 +00:00
|
|
|
* Selector constants for ucurr_getName().
|
|
|
|
*
|
|
|
|
* @see ucurr_getName
|
2004-11-03 01:25:51 +00:00
|
|
|
* @stable ICU 2.6
|
2003-04-11 20:02:25 +00:00
|
|
|
*/
|
2005-06-28 22:23:05 +00:00
|
|
|
typedef enum UCurrNameStyle {
|
2003-04-11 20:02:25 +00:00
|
|
|
/**
|
|
|
|
* Selector for ucurr_getName indicating a symbolic name for a
|
|
|
|
* currency, such as "$" for USD.
|
2004-11-03 01:25:51 +00:00
|
|
|
* @stable ICU 2.6
|
2003-04-11 20:02:25 +00:00
|
|
|
*/
|
|
|
|
UCURR_SYMBOL_NAME,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Selector for ucurr_getName indicating the long name for a
|
|
|
|
* currency, such as "US Dollar" for USD.
|
2004-11-03 01:25:51 +00:00
|
|
|
* @stable ICU 2.6
|
2003-04-11 20:02:25 +00:00
|
|
|
*/
|
2003-04-11 22:59:59 +00:00
|
|
|
UCURR_LONG_NAME
|
2003-04-11 20:02:25 +00:00
|
|
|
} UCurrNameStyle;
|
|
|
|
|
2004-07-18 01:37:13 +00:00
|
|
|
#if !UCONFIG_NO_SERVICE
|
|
|
|
/**
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 2.6
|
2004-07-18 01:37:13 +00:00
|
|
|
*/
|
|
|
|
typedef const void* UCurrRegistryKey;
|
|
|
|
|
2003-04-25 18:02:09 +00:00
|
|
|
/**
|
|
|
|
* Register an (existing) ISO 4217 currency code for the given locale.
|
2003-06-02 22:25:08 +00:00
|
|
|
* Only the country code and the two variants EURO and PRE_EURO are
|
|
|
|
* recognized.
|
2003-04-25 18:02:09 +00:00
|
|
|
* @param isoCode the three-letter ISO 4217 currency code
|
|
|
|
* @param locale the locale for which to register this currency code
|
2003-06-02 22:25:08 +00:00
|
|
|
* @param status the in/out status code
|
|
|
|
* @return a registry key that can be used to unregister this currency code, or NULL
|
|
|
|
* if there was an error.
|
2004-11-03 01:25:51 +00:00
|
|
|
* @stable ICU 2.6
|
2003-04-25 18:02:09 +00:00
|
|
|
*/
|
2004-11-03 01:25:51 +00:00
|
|
|
U_STABLE UCurrRegistryKey U_EXPORT2
|
2004-07-18 01:37:13 +00:00
|
|
|
ucurr_register(const UChar* isoCode,
|
2003-04-25 18:02:09 +00:00
|
|
|
const char* locale,
|
|
|
|
UErrorCode* status);
|
|
|
|
/**
|
|
|
|
* Unregister the previously-registered currency definitions using the
|
|
|
|
* URegistryKey returned from ucurr_register. Key becomes invalid after
|
2003-06-02 22:25:08 +00:00
|
|
|
* a successful call and should not be used again. Any currency
|
|
|
|
* that might have been hidden by the original ucurr_register call is
|
|
|
|
* restored.
|
|
|
|
* @param key the registry key returned by a previous call to ucurr_register
|
2003-04-25 18:02:09 +00:00
|
|
|
* @param status the in/out status code, no special meanings are assigned
|
|
|
|
* @return TRUE if the currency for this key was successfully unregistered
|
2004-11-03 01:25:51 +00:00
|
|
|
* @stable ICU 2.6
|
2003-04-25 18:02:09 +00:00
|
|
|
*/
|
2004-11-03 01:25:51 +00:00
|
|
|
U_STABLE UBool U_EXPORT2
|
2004-07-18 01:37:13 +00:00
|
|
|
ucurr_unregister(UCurrRegistryKey key, UErrorCode* status);
|
|
|
|
#endif /* UCONFIG_NO_SERVICE */
|
2003-04-25 18:02:09 +00:00
|
|
|
|
2003-04-11 20:02:25 +00:00
|
|
|
/**
|
|
|
|
* Returns the display name for the given currency in the
|
|
|
|
* given locale. For example, the display name for the USD
|
2002-07-08 17:57:10 +00:00
|
|
|
* currency object in the en_US locale is "$".
|
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
|
|
|
* @param locale locale in which to display currency
|
2003-04-11 20:02:25 +00:00
|
|
|
* @param nameStyle selector for which kind of name to return
|
|
|
|
* @param isChoiceFormat fill-in set to TRUE if the returned value
|
|
|
|
* is a ChoiceFormat pattern; otherwise it is a static string
|
2002-07-08 17:57:10 +00:00
|
|
|
* @param len fill-in parameter to receive length of result
|
|
|
|
* @param ec error code
|
2003-04-11 23:24:41 +00:00
|
|
|
* @return pointer to display string of 'len' UChars. If the resource
|
|
|
|
* data contains no entry for 'currency', then 'currency' itself is
|
|
|
|
* returned. If *isChoiceFormat is TRUE, then the result is a
|
|
|
|
* ChoiceFormat pattern. Otherwise it is a static string.
|
2004-11-03 01:25:51 +00:00
|
|
|
* @stable ICU 2.6
|
2002-07-08 17:57:10 +00:00
|
|
|
*/
|
2004-11-03 01:25:51 +00:00
|
|
|
U_STABLE const UChar* U_EXPORT2
|
2003-04-11 20:02:25 +00:00
|
|
|
ucurr_getName(const UChar* currency,
|
|
|
|
const char* locale,
|
|
|
|
UCurrNameStyle nameStyle,
|
|
|
|
UBool* isChoiceFormat,
|
|
|
|
int32_t* len,
|
|
|
|
UErrorCode* ec);
|
2002-07-08 17:57:10 +00:00
|
|
|
|
2009-02-12 22:55:29 +00:00
|
|
|
/**
|
|
|
|
* Returns the plural name for the given currency in the
|
|
|
|
* given locale. For example, the plural name for the USD
|
|
|
|
* currency object in the en_US locale is "US dollar" or "US dollars".
|
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
|
|
|
* @param locale locale in which to display currency
|
|
|
|
* @param isChoiceFormat fill-in set to TRUE if the returned value
|
|
|
|
* is a ChoiceFormat pattern; otherwise it is a static string
|
|
|
|
* @param pluralCount plural count
|
|
|
|
* @param len fill-in parameter to receive length of result
|
|
|
|
* @param ec error code
|
|
|
|
* @return pointer to display string of 'len' UChars. If the resource
|
|
|
|
* data contains no entry for 'currency', then 'currency' itself is
|
|
|
|
* returned.
|
2010-01-28 21:09:53 +00:00
|
|
|
* @stable ICU 4.2
|
2009-02-12 22:55:29 +00:00
|
|
|
*/
|
|
|
|
U_STABLE const UChar* U_EXPORT2
|
|
|
|
ucurr_getPluralName(const UChar* currency,
|
|
|
|
const char* locale,
|
|
|
|
UBool* isChoiceFormat,
|
|
|
|
const char* pluralCount,
|
|
|
|
int32_t* len,
|
|
|
|
UErrorCode* ec);
|
|
|
|
|
2002-07-08 17:57:10 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of the number of fraction digits that should
|
|
|
|
* be displayed for the given currency.
|
2014-06-12 21:40:34 +00:00
|
|
|
* This is equivalent to ucurr_getDefaultFractionDigitsForUsage(currency,UCURR_USAGE_STANDARD,ec);
|
2002-07-08 17:57:10 +00:00
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
2004-02-13 01:57:53 +00:00
|
|
|
* @param ec input-output error code
|
2002-07-08 17:57:10 +00:00
|
|
|
* @return a non-negative number of fraction digits to be
|
2004-02-13 01:57:53 +00:00
|
|
|
* displayed, or 0 if there is an error
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.0
|
2002-07-08 17:57:10 +00:00
|
|
|
*/
|
2006-01-18 04:19:45 +00:00
|
|
|
U_STABLE int32_t U_EXPORT2
|
2004-02-13 01:57:53 +00:00
|
|
|
ucurr_getDefaultFractionDigits(const UChar* currency,
|
|
|
|
UErrorCode* ec);
|
2002-07-08 17:57:10 +00:00
|
|
|
|
2014-06-12 21:40:34 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of the number of fraction digits that should
|
|
|
|
* be displayed for the given currency with usage.
|
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
|
|
|
* @param usage enum usage for the currency
|
|
|
|
* @param ec input-output error code
|
|
|
|
* @return a non-negative number of fraction digits to be
|
|
|
|
* displayed, or 0 if there is an error
|
2015-09-17 18:25:20 +00:00
|
|
|
* @stable ICU 54
|
2014-06-12 21:40:34 +00:00
|
|
|
*/
|
2015-09-17 18:25:20 +00:00
|
|
|
U_STABLE int32_t U_EXPORT2
|
2014-06-12 21:40:34 +00:00
|
|
|
ucurr_getDefaultFractionDigitsForUsage(const UChar* currency,
|
|
|
|
const UCurrencyUsage usage,
|
|
|
|
UErrorCode* ec);
|
|
|
|
|
2002-07-08 17:57:10 +00:00
|
|
|
/**
|
|
|
|
* Returns the rounding increment for the given currency, or 0.0 if no
|
|
|
|
* rounding is done by the currency.
|
2014-06-12 21:40:34 +00:00
|
|
|
* This is equivalent to ucurr_getRoundingIncrementForUsage(currency,UCURR_USAGE_STANDARD,ec);
|
2002-07-08 17:57:10 +00:00
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
2004-02-13 01:57:53 +00:00
|
|
|
* @param ec input-output error code
|
|
|
|
* @return the non-negative rounding increment, or 0.0 if none,
|
|
|
|
* or 0.0 if there is an error
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.0
|
2002-07-08 17:57:10 +00:00
|
|
|
*/
|
2006-01-18 04:19:45 +00:00
|
|
|
U_STABLE double U_EXPORT2
|
2004-02-13 01:57:53 +00:00
|
|
|
ucurr_getRoundingIncrement(const UChar* currency,
|
|
|
|
UErrorCode* ec);
|
2002-07-08 17:57:10 +00:00
|
|
|
|
2014-06-12 21:40:34 +00:00
|
|
|
/**
|
|
|
|
* Returns the rounding increment for the given currency, or 0.0 if no
|
|
|
|
* rounding is done by the currency given usage.
|
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
|
|
|
* @param usage enum usage for the currency
|
|
|
|
* @param ec input-output error code
|
|
|
|
* @return the non-negative rounding increment, or 0.0 if none,
|
|
|
|
* or 0.0 if there is an error
|
2015-09-17 18:25:20 +00:00
|
|
|
* @stable ICU 54
|
2014-06-12 21:40:34 +00:00
|
|
|
*/
|
2015-09-17 18:25:20 +00:00
|
|
|
U_STABLE double U_EXPORT2
|
2014-06-12 21:40:34 +00:00
|
|
|
ucurr_getRoundingIncrementForUsage(const UChar* currency,
|
|
|
|
const UCurrencyUsage usage,
|
|
|
|
UErrorCode* ec);
|
|
|
|
|
2005-06-16 18:44:30 +00:00
|
|
|
/**
|
|
|
|
* Selector constants for ucurr_openCurrencies().
|
|
|
|
*
|
|
|
|
* @see ucurr_openCurrencies
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 18:44:30 +00:00
|
|
|
*/
|
2005-06-28 22:23:05 +00:00
|
|
|
typedef enum UCurrCurrencyType {
|
2005-06-16 18:44:30 +00:00
|
|
|
/**
|
|
|
|
* Select all ISO-4217 currency codes.
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 18:44:30 +00:00
|
|
|
*/
|
2005-06-16 21:05:01 +00:00
|
|
|
UCURR_ALL = INT32_MAX,
|
2005-06-16 18:44:30 +00:00
|
|
|
/**
|
2005-06-16 21:05:01 +00:00
|
|
|
* Select only ISO-4217 commonly used currency codes.
|
2005-06-16 18:44:30 +00:00
|
|
|
* These currencies can be found in common use, and they usually have
|
|
|
|
* bank notes or coins associated with the currency code.
|
|
|
|
* This does not include fund codes, precious metals and other
|
|
|
|
* various ISO-4217 codes limited to special financial products.
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 18:44:30 +00:00
|
|
|
*/
|
2005-06-16 21:05:01 +00:00
|
|
|
UCURR_COMMON = 1,
|
|
|
|
/**
|
|
|
|
* Select ISO-4217 uncommon currency codes.
|
|
|
|
* These codes respresent fund codes, precious metals and other
|
|
|
|
* various ISO-4217 codes limited to special financial products.
|
|
|
|
* A fund code is a monetary resource associated with a currency.
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 21:05:01 +00:00
|
|
|
*/
|
|
|
|
UCURR_UNCOMMON = 2,
|
2005-06-16 18:44:30 +00:00
|
|
|
/**
|
|
|
|
* Select only deprecated ISO-4217 codes.
|
|
|
|
* These codes are no longer in general public use.
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 18:44:30 +00:00
|
|
|
*/
|
2005-06-16 21:05:01 +00:00
|
|
|
UCURR_DEPRECATED = 4,
|
|
|
|
/**
|
|
|
|
* Select only non-deprecated ISO-4217 codes.
|
|
|
|
* These codes are in general public use.
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 21:05:01 +00:00
|
|
|
*/
|
|
|
|
UCURR_NON_DEPRECATED = 8
|
2005-06-16 18:44:30 +00:00
|
|
|
} UCurrCurrencyType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides a UEnumeration object for listing ISO-4217 codes.
|
|
|
|
* @param currType You can use one of several UCurrCurrencyType values for this
|
|
|
|
* variable. You can also | (or) them together to get a specific list of
|
2005-06-16 21:05:01 +00:00
|
|
|
* currencies. Most people will want to use the (UCURR_CURRENCY|UCURR_NON_DEPRECATED) value to
|
2005-06-16 18:44:30 +00:00
|
|
|
* get a list of current currencies.
|
|
|
|
* @param pErrorCode Error code
|
2006-01-18 04:19:45 +00:00
|
|
|
* @stable ICU 3.2
|
2005-06-16 18:44:30 +00:00
|
|
|
*/
|
2006-01-18 04:19:45 +00:00
|
|
|
U_STABLE UEnumeration * U_EXPORT2
|
2005-06-16 18:44:30 +00:00
|
|
|
ucurr_openISOCurrencies(uint32_t currType, UErrorCode *pErrorCode);
|
|
|
|
|
2011-08-01 02:20:46 +00:00
|
|
|
/**
|
2011-04-04 15:00:03 +00:00
|
|
|
* Queries if the given ISO 4217 3-letter code is available on the specified date range.
|
|
|
|
*
|
|
|
|
* Note: For checking availability of a currency on a specific date, specify the date on both 'from' and 'to'
|
|
|
|
*
|
|
|
|
* When 'from' is U_DATE_MIN and 'to' is U_DATE_MAX, this method checks if the specified currency is available any time.
|
|
|
|
* If 'from' and 'to' are same UDate value, this method checks if the specified currency is available on that date.
|
|
|
|
*
|
2011-05-04 23:12:49 +00:00
|
|
|
* @param isoCode
|
2011-04-04 15:00:03 +00:00
|
|
|
* The ISO 4217 3-letter code.
|
|
|
|
*
|
|
|
|
* @param from
|
|
|
|
* The lower bound of the date range, inclusive. When 'from' is U_DATE_MIN, check the availability
|
|
|
|
* of the currency any date before 'to'
|
|
|
|
*
|
|
|
|
* @param to
|
|
|
|
* The upper bound of the date range, inclusive. When 'to' is U_DATE_MAX, check the availability of
|
|
|
|
* the currency any date after 'from'
|
|
|
|
*
|
|
|
|
* @param errorCode
|
|
|
|
* ICU error code
|
|
|
|
*
|
|
|
|
* @return TRUE if the given ISO 4217 3-letter code is supported on the specified date range.
|
|
|
|
*
|
2012-02-20 04:28:17 +00:00
|
|
|
* @stable ICU 4.8
|
2011-04-04 15:00:03 +00:00
|
|
|
*/
|
2012-10-17 05:48:18 +00:00
|
|
|
U_STABLE UBool U_EXPORT2
|
2011-04-04 15:00:03 +00:00
|
|
|
ucurr_isAvailable(const UChar* isoCode,
|
|
|
|
UDate from,
|
|
|
|
UDate to,
|
2011-05-04 23:12:49 +00:00
|
|
|
UErrorCode* errorCode);
|
2011-04-04 15:00:03 +00:00
|
|
|
|
2008-05-28 20:15:45 +00:00
|
|
|
/**
|
|
|
|
* Finds the number of valid currency codes for the
|
|
|
|
* given locale and date.
|
|
|
|
* @param locale the locale for which to retrieve the
|
|
|
|
* currency count.
|
|
|
|
* @param date the date for which to retrieve the
|
|
|
|
* currency count for the given locale.
|
|
|
|
* @param ec error code
|
|
|
|
* @return the number of currency codes for the
|
|
|
|
* given locale and date. If 0, currency
|
|
|
|
* codes couldn't be found for the input
|
|
|
|
* values are invalid.
|
2009-03-19 04:03:31 +00:00
|
|
|
* @stable ICU 4.0
|
2008-04-23 22:03:46 +00:00
|
|
|
*/
|
2010-01-23 06:36:03 +00:00
|
|
|
U_STABLE int32_t U_EXPORT2
|
2008-05-28 20:15:45 +00:00
|
|
|
ucurr_countCurrencies(const char* locale,
|
|
|
|
UDate date,
|
|
|
|
UErrorCode* ec);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds a currency code for the given locale and date
|
|
|
|
* @param locale the locale for which to retrieve a currency code.
|
|
|
|
* Currency can be specified by the "currency" keyword
|
|
|
|
* in which case it overrides the default currency code
|
|
|
|
* @param date the date for which to retrieve a currency code for
|
|
|
|
* the given locale.
|
|
|
|
* @param index the index within the available list of currency codes
|
|
|
|
* for the given locale on the given date.
|
|
|
|
* @param buff fill in buffer. Can be NULL for preflighting.
|
|
|
|
* @param buffCapacity capacity of the fill in buffer. Can be 0 for
|
|
|
|
* preflighting. If it is non-zero, the buff parameter
|
|
|
|
* must not be NULL.
|
|
|
|
* @param ec error code
|
|
|
|
* @return length of the currency string. It should always be 3.
|
|
|
|
* If 0, currency couldn't be found or the input values are
|
|
|
|
* invalid.
|
2009-03-19 04:03:31 +00:00
|
|
|
* @stable ICU 4.0
|
2008-05-28 20:15:45 +00:00
|
|
|
*/
|
2010-01-23 06:36:03 +00:00
|
|
|
U_STABLE int32_t U_EXPORT2
|
2008-05-28 20:15:45 +00:00
|
|
|
ucurr_forLocaleAndDate(const char* locale,
|
|
|
|
UDate date,
|
|
|
|
int32_t index,
|
|
|
|
UChar* buff,
|
|
|
|
int32_t buffCapacity,
|
|
|
|
UErrorCode* ec);
|
2005-06-16 18:44:30 +00:00
|
|
|
|
2009-02-14 02:32:41 +00:00
|
|
|
/**
|
|
|
|
* Given a key and a locale, returns an array of string values in a preferred
|
|
|
|
* order that would make a difference. These are all and only those values where
|
|
|
|
* the open (creation) of the service with the locale formed from the input locale
|
|
|
|
* plus input keyword and that value has different behavior than creation with the
|
|
|
|
* input locale alone.
|
|
|
|
* @param key one of the keys supported by this service. For now, only
|
|
|
|
* "currency" is supported.
|
|
|
|
* @param locale the locale
|
|
|
|
* @param commonlyUsed if set to true it will return only commonly used values
|
|
|
|
* with the given locale in preferred order. Otherwise,
|
|
|
|
* it will return all the available values for the locale.
|
2009-03-17 01:47:25 +00:00
|
|
|
* @param status error status
|
2009-02-14 02:32:41 +00:00
|
|
|
* @return a string enumeration over keyword values for the given key and the locale.
|
2010-01-28 21:09:53 +00:00
|
|
|
* @stable ICU 4.2
|
2009-02-14 02:32:41 +00:00
|
|
|
*/
|
2010-01-23 06:36:03 +00:00
|
|
|
U_STABLE UEnumeration* U_EXPORT2
|
2009-02-14 02:32:41 +00:00
|
|
|
ucurr_getKeywordValuesForLocale(const char* key,
|
|
|
|
const char* locale,
|
|
|
|
UBool commonlyUsed,
|
|
|
|
UErrorCode* status);
|
|
|
|
|
2012-02-03 18:40:03 +00:00
|
|
|
/**
|
|
|
|
* Returns the ISO 4217 numeric code for the currency.
|
|
|
|
* <p>Note: If the ISO 4217 numeric code is not assigned for the currency or
|
|
|
|
* the currency is unknown, this function returns 0.
|
|
|
|
*
|
|
|
|
* @param currency null-terminated 3-letter ISO 4217 code
|
|
|
|
* @return The ISO 4217 numeric code of the currency
|
2013-02-22 20:15:50 +00:00
|
|
|
* @stable ICU 49
|
2012-02-03 18:40:03 +00:00
|
|
|
*/
|
2013-02-22 20:15:50 +00:00
|
|
|
U_STABLE int32_t U_EXPORT2
|
2012-02-03 18:40:03 +00:00
|
|
|
ucurr_getNumericCode(const UChar* currency);
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
|
|
|
|
2002-07-08 17:57:10 +00:00
|
|
|
#endif
|