public interface DateAdjuster
This interface provides a common way to access many different date adjustments. Examples might be an adjuster that sets the date avoiding weekends, or one that sets the date to the last day of the month.
DateAdjuster is an interface and must be implemented with care to ensure other classes in the framework operate correctly. All instantiable implementations must be final, immutable and thread-safe.
Modifier and Type | Method and Description |
---|---|
LocalDate |
adjustDate(LocalDate date)
Adjusts the input date returning the adjusted date.
|
Copyright © 2014. All rights reserved.