java.time.Year.from() Method Example



Description

The java.time.Year.from(TemporalAmount amount) method obtains an instance of Year from a temporal amount.

Declaration

Following is the declaration for java.time.Year.from(TemporalAmount amount) method.

public static Year from(TemporalAmount amount)

Parameters

amount − the temporal amount to convert, not null.

Return Value

the equivalent Year, not null.

Exception

  • DateTimeException − if unable to convert to a Year.

  • ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.Year.from(TemporalAmount amount) method.

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      Year date = Year.from(Year.of(2017));
      System.out.println(date);
   }
}

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

2017
Advertisements