sun.util.locale.LocaleUtils Java Examples

The following examples show how to use sun.util.locale.LocaleUtils. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Locale.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #2
Source File: Locale.java    From j2objc with Apache License 2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #3
Source File: Locale.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #4
Source File: Locale.java    From jdk-1.7-annotated with Apache License 2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #5
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #6
Source File: Locale.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #7
Source File: Locale.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #8
Source File: Locale.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #9
Source File: Locale.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #10
Source File: Locale.java    From Java8CN with Apache License 2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #11
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #12
Source File: Locale.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.isEmpty()
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.isEmpty()
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #13
Source File: Locale.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
private static Optional<LocaleExtensions> getDefaultExtensions(String extensionsProp) {
    if (LocaleUtils.isEmpty(extensionsProp)) {
        return Optional.empty();
    }

    LocaleExtensions exts = null;
    try {
        exts = new InternalLocaleBuilder()
            .setExtensions(extensionsProp)
            .getLocaleExtensions();
    } catch (LocaleSyntaxException e) {
        // just ignore this incorrect property
    }

    return Optional.ofNullable(exts);
}
 
Example #14
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #15
Source File: Locale.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #16
Source File: Locale.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #17
Source File: LocaleSchema.java    From joyrpc with Apache License 2.0 6 votes vote down vote up
protected static LocaleExtensions getCompatibilityExtensions(String language,
                                                             String script,
                                                             String country,
                                                             String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #18
Source File: Locale.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #19
Source File: Locale.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #20
Source File: Locale.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #21
Source File: Locale.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
private static LocaleExtensions getCompatibilityExtensions(String language,
                                                           String script,
                                                           String country,
                                                           String variant) {
    LocaleExtensions extensions = null;
    // Special cases for backward compatibility support
    if (LocaleUtils.caseIgnoreMatch(language, "ja")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "jp")
            && "JP".equals(variant)) {
        // ja_JP_JP -> u-ca-japanese (calendar = japanese)
        extensions = LocaleExtensions.CALENDAR_JAPANESE;
    } else if (LocaleUtils.caseIgnoreMatch(language, "th")
            && script.length() == 0
            && LocaleUtils.caseIgnoreMatch(country, "th")
            && "TH".equals(variant)) {
        // th_TH_TH -> u-nu-thai (numbersystem = thai)
        extensions = LocaleExtensions.NUMBER_THAI;
    }
    return extensions;
}
 
Example #22
Source File: LocaleSchema.java    From joyrpc with Apache License 2.0 5 votes vote down vote up
protected static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #23
Source File: Locale.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #24
Source File: Locale.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #25
Source File: Locale.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #26
Source File: Locale.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #27
Source File: Locale.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #28
Source File: Locale.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #29
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}
 
Example #30
Source File: Locale.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
private static String convertOldISOCodes(String language) {
    // we accept both the old and the new ISO codes for the languages whose ISO
    // codes have changed, but we always store the OLD code, for backward compatibility
    language = LocaleUtils.toLowerString(language).intern();
    if (language == "he") {
        return "iw";
    } else if (language == "yi") {
        return "ji";
    } else if (language == "id") {
        return "in";
    } else {
        return language;
    }
}