YearMonth isAfter() method in Java with Examples
The isAfter() method of Year class in Java is used to check if this current YearMonth object is after the YearMonth specified as parameter to this method.
Syntax:
public boolean isAfter(Year otherYearMonth)
Parameter: It accepts a single parameter otherYearMonth with which the current YearMonth object is to be compared.
Return Value: It returns a boolean True value if this YearMonth object’s value is after the value of YearMonth object specified as a parameter to the method, otherwise it returns False.
Below programs illustrate the YearMonth.isAfter() method in Java:
Program 1:
// Program to illustrate the isAfter() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create first Year object YearMonth yearMonth1 = YearMonth.of( 2018 , 3 ); // Create second Year object YearMonth yearMonth2 = YearMonth.of( 1997 , 4 ); // Check if this year-month object's value is // after the specified Year-month or not System.out.println(yearMonth1 .isAfter(yearMonth2)); } } |
Program 2:
// Program to illustrate the isAfter() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create first Year object YearMonth yearMonth1 = YearMonth.of( 1997 , 3 ); // Create second Year object YearMonth yearMonth2 = YearMonth.of( 2018 , 4 ); // Check if this year-month object's value is // after the specified Year-month or not System.out.println(yearMonth1 .isAfter(yearMonth2)); } } |
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isAfter-java.time.YearMonth-
Please Login to comment...