Home | History | Annotate | Download | only in chrono

Lines Matching refs:years

108  *  current era. For the previous era, years have zero, then negative values.
115 * <li>leap-year - Leap years occur every 4 years, except where the year is divisble by 100 and not divisble by 400.
366 * This method applies the current rules for leap years across the whole time-line.
368 * remainder. However, years divisible by 100, are not leap years, with
369 * the exception of years divisible by 400 which are.
462 * years, months and weeks in {@code ALIGNED_DAY_OF_WEEK_IN_MONTH}.
464 * the years, months and weeks have been handled.
479 * The approach is the same as described above for years and weeks in
481 * next or same matching day-of-week once the years and weeks have been handled.
571 * Obtains a period for this chronology based on years, months and days.
574 * years, months and days. See {@link Period} for further details.
576 * @param years the number of years, may be negative
577 * @param months the number of years, may be negative
578 * @param days the number of years, may be negative
583 public Period period(int years, int months, int days) {
584 return Period.of(years, months, days);