Java Code Examples for sun.util.calendar.CalendarSystem#forName()
The following examples show how to use
sun.util.calendar.CalendarSystem#forName() .
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: SimpleTimeZone.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 2
Source File: SimpleTimeZone.java From j2objc with Apache License 2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 3
Source File: SimpleTimeZone.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 4
Source File: SimpleTimeZone.java From jdk-1.7-annotated with Apache License 2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 5
Source File: SimpleTimeZone.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 6
Source File: SimpleTimeZone.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 7
Source File: SimpleTimeZone.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 8
Source File: SimpleTimeZone.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 9
Source File: SimpleTimeZone.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 10
Source File: SimpleTimeZone.java From Java8CN with Apache License 2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 11
Source File: SimpleTimeZone.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 12
Source File: SimpleTimeZone.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 13
Source File: SimpleTimeZone.java From Bytecoder with Apache License 2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { Cache cache = this.cache; if (cache != null) { if (date >= cache.start && date < cache.end) { offset += dstSavings; break computeOffset; } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 14
Source File: SimpleTimeZone.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 15
Source File: SimpleTimeZone.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 16
Source File: SimpleTimeZone.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 17
Source File: SimpleTimeZone.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 18
Source File: SimpleTimeZone.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }
Example 19
Source File: SimpleTimeZone.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * @see TimeZone#getOffsets */ int getOffsets(long date, int[] offsets) { int offset = rawOffset; computeOffset: if (useDaylight) { synchronized (this) { if (cacheStart != 0) { if (date >= cacheStart && date < cacheEnd) { offset += dstSavings; break computeOffset; } } } BaseCalendar cal = date >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER ? gcal : (BaseCalendar) CalendarSystem.forName("julian"); BaseCalendar.Date cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.NO_TIMEZONE); // Get the year in local time cal.getCalendarDate(date + rawOffset, cdate); int year = cdate.getNormalizedYear(); if (year >= startYear) { // Clear time elements for the transition calculations cdate.setTimeOfDay(0, 0, 0, 0); offset = getOffset(cal, cdate, year, date); } } if (offsets != null) { offsets[0] = rawOffset; offsets[1] = offset - rawOffset; } return offset; }