Java Date Time - YearMonth isAfter(YearMonth other) example








YearMonth isAfter(YearMonth other) check if this year-month is after the specified year-month.

Syntax

isAfter has the following syntax.

public boolean isAfter(YearMonth other)

Example

The following example shows how to use isAfter.

import java.time.YearMonth;

public class Main {
  public static void main(String[] args) {
    YearMonth y = YearMonth.now();
    System.out.println(y.isAfter(YearMonth.now()));

  }
}

The code above generates the following result.