Month adjustInto(Temporal temporal) example

Description

Month adjustInto(Temporal temporal) adjusts the specified temporal object to have this month-of-year.

Syntax

adjustInto has the following syntax.


public Temporal adjustInto(Temporal temporal)

Example

The following example shows how to use adjustInto.


import java.time.LocalDate;
import java.time.Month;
import java.time.temporal.Temporal;
/*  ww w  .j  a  va  2 s . co  m*/
public class Main {
  public static void main(String[] args) {
    Month m = Month.from(LocalDate.now());
    
    Temporal n = m.adjustInto(LocalDate.now());
    System.out.println(n);

  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset