java.time.MonthDay.from() Method Example



Description

The java.time.MonthDay.from(TemporalAccessor temporal) method obtains an instance of MonthDay from a temporal object.

Declaration

Following is the declaration for java.time.MonthDay.from(TemporalAccessor temporal) method.

public static MonthDay from(TemporalAccessor temporal)

Parameters

temporal − the temporal object to convert, not null.

Return Value

the local date, not null.

Exceptions

DateTimeException − if unable to convert to a MonthDay.

Example

The following example shows the usage of java.time.MonthDay.from(TemporalAccessor temporal) method.

package com.tutorialspoint;

import java.time.MonthDay;
import java.time.ZonedDateTime;

public class MonthDayDemo {
   public static void main(String[] args) {
 
      MonthDay date = MonthDay.from(ZonedDateTime.now());
      System.out.println(date);  
   }
}

Let us compile and run the above program, this will produce the following result −

--12-26
Advertisements