Searched refs:monthDay (Results 1 – 4 of 4) sorted by relevance
534 public boolean isValidMonthDay(MonthDay monthDay) { in isValidMonthDay() argument535 return monthDay != null && monthDay.isValidYear(year); in isValidMonthDay()1002 public LocalDate atMonthDay(MonthDay monthDay) { in atMonthDay() argument1003 return monthDay.atYear(year); in atMonthDay()
742 private int monthDay; field in ZoneInfo.WallTime1128 public void setMonthDay(int monthDay) {1129 this.monthDay = monthDay;1179 return monthDay;1220 calendar.set(Calendar.DAY_OF_MONTH, monthDay);1230 monthDay = calendar.get(Calendar.DAY_OF_MONTH);
869 public void test_isValidMonthDay(Year year, MonthDay monthDay, boolean expected) { in test_isValidMonthDay() argument870 assertEquals(year.isValidMonthDay(monthDay), expected); in test_isValidMonthDay()1028 public void test_atMonthDay(Year year, MonthDay monthDay, LocalDate expected) { in test_atMonthDay() argument1029 assertEquals(year.atMonthDay(monthDay), expected); in test_atMonthDay()
305 MonthDay monthDay = MonthDay.parse(text); in factory_parse_success() local306 assertEquals(monthDay, expected); in factory_parse_success()