Chronology.dateYearDay

Obtains a local date _in this chronology from the era, year-of-era and day-of-year fields.

@implSpec The implementation combines the era and year-of-era into a proleptic year before calling {@link #dateYearDay(int, int)}.

@param era the era of the correct type for the chronology, not null @param yearOfEra the chronology year-of-era @param dayOfYear the chronology day-of-year @return the local date _in this chronology, not null @throws DateTimeException if unable to create the date @throws ClassCastException if the {@code era} is not of the correct type for the chronology

  1. ChronoLocalDate dateYearDay(Era era, int yearOfEra, int dayOfYear)
    interface Chronology
  2. ChronoLocalDate dateYearDay(int prolepticYear, int dayOfYear)

Meta