Searched refs:monthDay (Results 1 – 3 of 3) 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()
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()