Searched defs:LocalDate (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
H A DLocalDate.java109 * {@code LocalDate} is an immutable date-time object that represents a date,
112 * For example, the value "2nd October 2007" can be stored in a {@code LocalDate}.
131 public final class LocalDate class in inherits:Temporal,TemporalAdjuster,ChronoLocalDate,Serializable
135 * The minimum supported {@code LocalDate}, '-999999999-01-01'.
138 public static final LocalDate MIN = LocalDate.of(Year.MIN_VALUE, 1, 1);
140 * The maximum supported {@code LocalDate}, '+999999999-12-31'.
143 public static final LocalDate MAX = LocalDate.of(Year.MAX_VALUE, 12, 31);
185 public static LocalDate no
462 private LocalDate(int year, int month, int dayOfMonth) { method in class:LocalDate
[all...]

Completed in 45 milliseconds