Java Code Examples for sun.util.calendar.CalendarUtils#isGregorianLeapYear()

The following examples show how to use sun.util.calendar.CalendarUtils#isGregorianLeapYear() . 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: JapaneseImperialCalendar.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 2
Source File: JapaneseImperialCalendar.java    From jdk8u-dev-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 3
Source File: JapaneseImperialCalendar.java    From jdk-1.7-annotated with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see #isLeapYear(int)
 */
private final int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 4
Source File: JapaneseImperialCalendar.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 5
Source File: JapaneseImperialCalendar.java    From jdk8u_jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 6
Source File: JapaneseImperialCalendar.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 7
Source File: JapaneseImperialCalendar.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 8
Source File: JapaneseImperialCalendar.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 9
Source File: JapaneseImperialCalendar.java    From Java8CN with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 10
Source File: JapaneseImperialCalendar.java    From jdk1.8-source-analysis with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 11
Source File: JapaneseImperialCalendar.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 12
Source File: JapaneseImperialCalendar.java    From Bytecoder with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 13
Source File: JapaneseImperialCalendar.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 14
Source File: JapaneseImperialCalendar.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 15
Source File: JapaneseImperialCalendar.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 16
Source File: JapaneseImperialCalendar.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 17
Source File: JapaneseImperialCalendar.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}
 
Example 18
Source File: JapaneseImperialCalendar.java    From dragonwell8_jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the length of the specified month in the specified
 * Gregorian year. The year number must be normalized.
 *
 * @see GregorianCalendar#isLeapYear(int)
 */
private int monthLength(int month, int gregorianYear) {
    return CalendarUtils.isGregorianLeapYear(gregorianYear) ?
        GregorianCalendar.LEAP_MONTH_LENGTH[month] : GregorianCalendar.MONTH_LENGTH[month];
}