Home | History | Annotate | Download | only in chrono

Lines Matching defs:chrono

70  * The alternate calendars are provided in the {@link java.time.chrono} package.
73 * A calendar system is defined by the {@link java.time.chrono.Chronology} interface,
74 * while a date in a calendar system is defined by the {@link java.time.chrono.ChronoLocalDate} interface.
79 * The "chrono" classes are then used at the user interface level to deal with localized input/output.
80 * See {@link java.time.chrono.ChronoLocalDate ChronoLocalDate}
86 * working with the "chrono" interfaces.
92 * <li>{@link java.time.chrono.HijrahChronology Hijrah calendar}</li>
93 * <li>{@link java.time.chrono.JapaneseChronology Japanese calendar}</li>
94 * <li>{@link java.time.chrono.MinguoChronology Minguo calendar}</li>
95 * <li>{@link java.time.chrono.ThaiBuddhistChronology Thai Buddhist calendar}</li>
105 * for (Chronology chrono : chronos) {
106 * ChronoLocalDate date = chrono.dateNow();
107 * System.out.printf(" %20s: %s%n", chrono.getId(), date.toString());
171 package java.time.chrono;