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

/libcore/ojluni/src/main/java/java/time/temporal/
H A DTemporalAdjusters.java291 return TemporalAdjusters.dayOfWeekInMonth(1, dayOfWeek);
311 return TemporalAdjusters.dayOfWeekInMonth(-1, dayOfWeek);
346 public static TemporalAdjuster dayOfWeekInMonth(int ordinal, DayOfWeek dayOfWeek) { method in class:TemporalAdjusters
/libcore/ojluni/src/test/java/time/tck/java/time/temporal/
H A DTCKTemporalAdjusters.java307 // dayOfWeekInMonth()
311 assertNotNull(TemporalAdjusters.dayOfWeekInMonth(1, MONDAY));
316 TemporalAdjusters.dayOfWeekInMonth(1, null);
342 LocalDate test = (LocalDate) TemporalAdjusters.dayOfWeekInMonth(ordinal, dow).adjustInto(date);
370 LocalDate test = (LocalDate) TemporalAdjusters.dayOfWeekInMonth(0, dow).adjustInto(date);
398 LocalDate test = (LocalDate) TemporalAdjusters.dayOfWeekInMonth(-1 - ordinal, dow).adjustInto(date);

Completed in 232 milliseconds