Home
last modified time | relevance | path

Searched refs:dayOfWeekInMonth (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/time/temporal/
DTemporalAdjusters.java291 return TemporalAdjusters.dayOfWeekInMonth(1, dayOfWeek); in firstInMonth()
311 return TemporalAdjusters.dayOfWeekInMonth(-1, dayOfWeek); in lastInMonth()
346 public static TemporalAdjuster dayOfWeekInMonth(int ordinal, DayOfWeek dayOfWeek) { in dayOfWeekInMonth() method
/libcore/ojluni/src/test/java/time/tck/java/time/temporal/
DTCKTemporalAdjusters.java311 assertNotNull(TemporalAdjusters.dayOfWeekInMonth(1, MONDAY)); in factory_dayOfWeekInMonth()
316 TemporalAdjusters.dayOfWeekInMonth(1, null); in factory_dayOfWeekInMonth_nullDayOfWeek()
342 … LocalDate test = (LocalDate) TemporalAdjusters.dayOfWeekInMonth(ordinal, dow).adjustInto(date); in test_dayOfWeekInMonth_positive()
370 … LocalDate test = (LocalDate) TemporalAdjusters.dayOfWeekInMonth(0, dow).adjustInto(date); in test_dayOfWeekInMonth_zero()
398 …LocalDate test = (LocalDate) TemporalAdjusters.dayOfWeekInMonth(-1 - ordinal, dow).adjustInto(date… in test_dayOfWeekInMonth_negative()