TemporalAdjusters.FirstDayOfNextYear Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the "first day of next year" adjuster, which returns a new date set to the first day of the next year.
[Android.Runtime.Register("firstDayOfNextYear", "()Ljava/time/temporal/TemporalAdjuster;", "", ApiSince=26)]
public static Java.Time.Temporal.ITemporalAdjuster? FirstDayOfNextYear ();
[<Android.Runtime.Register("firstDayOfNextYear", "()Ljava/time/temporal/TemporalAdjuster;", "", ApiSince=26)>]
static member FirstDayOfNextYear : unit -> Java.Time.Temporal.ITemporalAdjuster
Returns
the first day of next month adjuster, not null
- Attributes
Remarks
Returns the "first day of next year" adjuster, which returns a new date set to the first day of the next year.
The ISO calendar system behaves as follows:<br> The input 2011-01-15 will return 2012-01-01.
The behavior is suitable for use with most calendar systems. It is equivalent to:
temporal.with(DAY_OF_YEAR, 1).plus(1, YEARS);
Java documentation for java.time.temporal.TemporalAdjusters.firstDayOfNextYear()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.