Home | History | Annotate | Download | only in chrono

Lines Matching defs:chrono

57 package java.time.chrono;
84 * The calendar system, represented by a {@link java.time.chrono.Chronology}, expresses the relationship between
100 * for (Chronology chrono : chronos) {
101 * ChronoLocalDate date = chrono.dateNow();
102 * System.out.printf(" %20s: %s%n", chrono.getID(), date.toString());
133 * {@link java.time.chrono.Chronology#getId() chronlogy ID} and {@link Chronology#getCalendarType() calendar type}. </p>
154 * @param chrono the chronology to check for, not null
160 static <D extends ChronoLocalDate> D ensureValid(Chronology chrono, Temporal temporal) {
163 if (chrono.equals(other.getChronology()) == false) {
164 throw new ClassCastException("Chronology mismatch, expected: " + chrono.getId() + ", actual: " + other.getChronology().getId());