Search in sources :

Example 1 with BuddhistCalendar

use of sun.util.BuddhistCalendar in project Bytecoder by mirkosertic.

the class Calendar method createCalendar.

private static Calendar createCalendar(TimeZone zone, Locale aLocale) {
    CalendarProvider provider = LocaleProviderAdapter.getAdapter(CalendarProvider.class, aLocale).getCalendarProvider();
    if (provider != null) {
        try {
            return provider.getInstance(zone, aLocale);
        } catch (IllegalArgumentException iae) {
        // fall back to the default instantiation
        }
    }
    Calendar cal = null;
    if (aLocale.hasExtensions()) {
        String caltype = aLocale.getUnicodeLocaleType("ca");
        if (caltype != null) {
            switch(caltype) {
                case "buddhist":
                    cal = new BuddhistCalendar(zone, aLocale);
                    break;
                case "japanese":
                    cal = new JapaneseImperialCalendar(zone, aLocale);
                    break;
                case "gregory":
                    cal = new GregorianCalendar(zone, aLocale);
                    break;
            }
        }
    }
    if (cal == null) {
        // NOTE: The language, country and variant strings are interned.
        if (aLocale.getLanguage() == "th" && aLocale.getCountry() == "TH") {
            cal = new BuddhistCalendar(zone, aLocale);
        } else if (aLocale.getVariant() == "JP" && aLocale.getLanguage() == "ja" && aLocale.getCountry() == "JP") {
            cal = new JapaneseImperialCalendar(zone, aLocale);
        } else {
            cal = new GregorianCalendar(zone, aLocale);
        }
    }
    return cal;
}
Also used : BuddhistCalendar(sun.util.BuddhistCalendar) CalendarProvider(sun.util.spi.CalendarProvider) BuddhistCalendar(sun.util.BuddhistCalendar)

Example 2 with BuddhistCalendar

use of sun.util.BuddhistCalendar in project jdk8u_jdk by JetBrains.

the class Calendar method createCalendar.

private static Calendar createCalendar(TimeZone zone, Locale aLocale) {
    CalendarProvider provider = LocaleProviderAdapter.getAdapter(CalendarProvider.class, aLocale).getCalendarProvider();
    if (provider != null) {
        try {
            return provider.getInstance(zone, aLocale);
        } catch (IllegalArgumentException iae) {
        // fall back to the default instantiation
        }
    }
    Calendar cal = null;
    if (aLocale.hasExtensions()) {
        String caltype = aLocale.getUnicodeLocaleType("ca");
        if (caltype != null) {
            switch(caltype) {
                case "buddhist":
                    cal = new BuddhistCalendar(zone, aLocale);
                    break;
                case "japanese":
                    cal = new JapaneseImperialCalendar(zone, aLocale);
                    break;
                case "gregory":
                    cal = new GregorianCalendar(zone, aLocale);
                    break;
            }
        }
    }
    if (cal == null) {
        // NOTE: The language, country and variant strings are interned.
        if (aLocale.getLanguage() == "th" && aLocale.getCountry() == "TH") {
            cal = new BuddhistCalendar(zone, aLocale);
        } else if (aLocale.getVariant() == "JP" && aLocale.getLanguage() == "ja" && aLocale.getCountry() == "JP") {
            cal = new JapaneseImperialCalendar(zone, aLocale);
        } else {
            cal = new GregorianCalendar(zone, aLocale);
        }
    }
    return cal;
}
Also used : BuddhistCalendar(sun.util.BuddhistCalendar) CalendarProvider(sun.util.spi.CalendarProvider) BuddhistCalendar(sun.util.BuddhistCalendar)

Example 3 with BuddhistCalendar

use of sun.util.BuddhistCalendar in project checker-framework by typetools.

the class Calendar method createCalendar.

private static Calendar createCalendar(TimeZone zone, Locale aLocale) {
    Calendar cal = null;
    String caltype = aLocale.getUnicodeLocaleType("ca");
    if (caltype == null) {
        // returns a BuddhistCalendar instance.
        if ("th".equals(aLocale.getLanguage()) && ("TH".equals(aLocale.getCountry()))) {
            cal = new BuddhistCalendar(zone, aLocale);
        } else {
            cal = new GregorianCalendar(zone, aLocale);
        }
    } else if (caltype.equals("japanese")) {
        cal = new JapaneseImperialCalendar(zone, aLocale);
    } else if (caltype.equals("buddhist")) {
        cal = new BuddhistCalendar(zone, aLocale);
    } else {
        // Unsupported calendar type.
        // Use Gregorian calendar as a fallback.
        cal = new GregorianCalendar(zone, aLocale);
    }
    return cal;
}
Also used : BuddhistCalendar(sun.util.BuddhistCalendar) BuddhistCalendar(sun.util.BuddhistCalendar)

Aggregations

BuddhistCalendar (sun.util.BuddhistCalendar)3 CalendarProvider (sun.util.spi.CalendarProvider)2