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

/libcore/ojluni/src/main/java/java/time/
H A DYearMonth.java106 * {@code YearMonth} is an immutable date-time object that represents the combination
111 * For example, the value "October 2007" can be stored in a {@code YearMonth}.
125 public final class YearMonth class in inherits:Temporal,TemporalAdjuster,Comparable,Serializable
126 implements Temporal, TemporalAdjuster, Comparable<YearMonth>, Serializable {
162 public static YearMonth now() {
178 public static YearMonth now(ZoneId zone) {
192 public static YearMonth now(Clock clock) {
194 return YearMonth.of(now.getYear(), now.getMonth());
199 * Obtains an instance of {@code YearMonth} from a year and month.
206 public static YearMonth o
299 private YearMonth(int year, int month) { method in class:YearMonth
[all...]

Completed in 20 milliseconds