dayOfWeekInMonth(int ordinal, DayOfWeek dayOfWeek) | This method is used to return the day-of-week in month adjuster, which returns a new date object within the same month with the ordinal day-of-week. |
firstDayOfMonth() | This method is used to return the "first day of month" adjuster, which returns a new date set to the first day of the current month. |
firstDayOfNextMonth() | This method is used to return the "first day of next month" adjuster, which returns a new date set to the first day of the next month. |
firstDayOfNextYear() | This method is used to return the "first day of next year" adjuster, which returns a new date set to the first day of the next year. |
firstDayOfYear() | This method is used to return the "first day of year" adjuster, which returns a new date set to the first day of the current year. |
firstInMonth(DayOfWeek dayOfWeek) | This method is used to return the first in month adjuster, which returns a new date in the same month with the first matching day-of-week. |
lastDayOfMonth() | This method is used to return the "last day of month" adjuster, which returns a new date set to the last day of the current month. |
lastDayOfYear() | This method is used to return the "last day of year" adjuster, which returns a new date set to the last day of the current year. |
lastInMonth(DayOfWeek dayOfWeek) | This method is used to return the last in month adjuster, which returns a new date in the same month with the last matching day-of-week. |
next(DayOfWeek dayOfWeek) | This method is used to return the next day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted. |
nextOrSame(DayOfWeek dayOfWeek) | This method is used to return the next-or-same day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted unless it is already on that day in which case the same object is returned. |
ofDateAdjuster(UnaryOperator<LocalDate> dateBasedAdjuster) | This method is used to obtain a TemporalAdjuster that wraps a date adjuster. |
previous(DayOfWeek dayOfWeek) | This method is used to return the previous day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week before the date being adjusted. |
previousOrSame(DayOfWeek dayOfWeek) | This method is used to return the previous-or-same day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week before the date being adjusted unless it is already on that day in which case the same object is returned. |