Home | History | Annotate | Download | only in chrono

Lines Matching refs:isoDate

112     private final transient LocalDate isoDate;
204 * @param isoDate the standard local date, validated not null
206 MinguoDate(LocalDate isoDate) {
207 Objects.requireNonNull(isoDate, "isoDate");
208 this.isoDate = isoDate;
248 return isoDate.lengthOfMonth();
261 return isoDate.range(field);
290 return isoDate.getLong(field);
296 return getProlepticYear() * 12L + isoDate.getMonthValue() - 1;
300 return isoDate.getYear() - YEARS_DIFFERENCE;
321 return with(isoDate.withYear(getProlepticYear() >= 1 ? nvalue + YEARS_DIFFERENCE : (1 - nvalue) + YEARS_DIFFERENCE));
323 return with(isoDate.withYear(nvalue + YEARS_DIFFERENCE));
325 return with(isoDate.withYear((1 - getProlepticYear()) + YEARS_DIFFERENCE));
329 return with(isoDate.with(field, newValue));
367 return with(isoDate.plusYears(years));
372 return with(isoDate.plusMonths(months));
382 return with(isoDate.plusDays(days));
416 return (newDate.equals(isoDate) ? this : new MinguoDate(newDate));
427 Period period = isoDate.until(endDate);
433 return isoDate.toEpochDay();
456 return this.isoDate.equals(otherDate.isoDate);
468 return getChronology().getId().hashCode() ^ isoDate.hashCode();