sun.util.locale.LocaleExtensions Java Examples

The following examples show how to use sun.util.locale.LocaleExtensions. 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-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 #2
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 #3
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 #4
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 #5
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 #6
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 #7
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 #8
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 #9
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 #10
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 #11
Source File: Locale.java    From jdk-1.7-annotated with Apache License 2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #12
Source File: Locale.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #13
Source File: Locale.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #14
Source File: Locale.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #15
Source File: Locale.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #16
Source File: Locale.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #17
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #18
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #19
Source File: Locale.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #20
Source File: Locale.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #21
Source File: Locale.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #22
Source File: Locale.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #23
Source File: Locale.java    From j2objc with Apache License 2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #24
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #25
Source File: Locale.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #26
Source File: Locale.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #27
Source File: Locale.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #28
Source File: Locale.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #29
Source File: Locale.java    From Java8CN with Apache License 2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #30
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}