java.time.Year.isAfter() Method Example



Description

The java.time.Year.isAfter(Year other) method checks if this year-month is after the specified year

Declaration

Following is the declaration for java.time.Year.isAfter(Year other) method.

public boolean isAfter(Year other)

Parameters

other − the other year to compare to, not null.

Return Value

true if this year is after the specified year.

Example

The following example shows the usage of java.time.Year.isAfter(Year other) method.

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {
 
      Year date = Year.of(2016);
      Year date1 = Year.of(2017);
      System.out.println(date1.isAfter(date));  
   }
}

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

true
Advertisements