All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.icu.impl.javaspi.util.CurrencyNameProviderICU Maven / Gradle / Ivy

Go to download

icu4j-localespi is a supplemental library for icu4j, implementing Java Locale SPI.

There is a newer version: 75.1
Show newest version
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
/*
 *******************************************************************************
 * Copyright (C) 2008-2012, International Business Machines Corporation and    *
 * others. All Rights Reserved.                                                *
 *******************************************************************************
 */
package com.ibm.icu.impl.javaspi.util;

import java.util.Locale;
import java.util.spi.CurrencyNameProvider;

import com.ibm.icu.impl.javaspi.ICULocaleServiceProvider;
import com.ibm.icu.text.CurrencyDisplayNames;

public class CurrencyNameProviderICU extends CurrencyNameProvider {

    @Override
    public String getSymbol(String currencyCode, Locale locale) {
        CurrencyDisplayNames curDispNames = CurrencyDisplayNames.getInstance(ICULocaleServiceProvider.toULocaleNoSpecialVariant(locale));
        String sym = curDispNames.getSymbol(currencyCode);
        if (sym == null || sym.equals(currencyCode)) {
            return null;
        }
        return sym;
    }

    // Not available in Java 6
    // @Override
    public String getDisplayName(String currencyCode, Locale locale) {
        CurrencyDisplayNames curDispNames = CurrencyDisplayNames.getInstance(ICULocaleServiceProvider.toULocaleNoSpecialVariant(locale));
        String name = curDispNames.getName(currencyCode);
        if (name == null || name.equals(currencyCode)) {
            return null;
        }
        return name;
    }

    @Override
    public Locale[] getAvailableLocales() {
        return ICULocaleServiceProvider.getAvailableLocales();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy