Home »
Java »
Java Reference »
Java Instant Class
Java Instant Class | isAfter() Method with Example
Instant Class isAfter() method: Here, we are going to learn about the isAfter() method of Instant Class with its syntax and example.
Submitted by Preeti Jain, on May 25, 2020
Instant Class isAfter() method
- isAfter() method is available in java.time package.
- isAfter() method is used to check whether this Instant value comes after the given Instant (ins) value or not.
- isAfter() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- isAfter() method may throw an exception at the time of checking the status.
NullPointerException: This exception may throw when the given parameter value is null.
Syntax:
public boolean isAfter(Instant ins);
Parameter(s):
- Instant ins – represents the Instant object to be compared with this Instant.
Return value:
The return type of this method is boolean, it returns true when this Instant value comes after the given Instant value otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean isAfter(Instant ins) method
// of Instant
import java.time.*;
public class IsAfterOfInstant {
public static void main(String args[]) {
// Instantiates two Instant
Instant ins1 = Instant.parse("2006-04-03T05:10:15.00Z");
Instant ins2 = Instant.now();
// Display ins1,ins2
System.out.println("Instant ins1 and ins2: ");
System.out.println("ins1: " + ins1);
System.out.println("ins2: " + ins2);
System.out.println();
// Here, this method checks whether this
// Instant (ins1) comes after the given
// Instant (ins2) or not i.e. here it
// returns false because ins1 comes before the
// given ins2
boolean status = ins1.isAfter(ins2);
// Display status
System.out.println("ins1.isAfter(ins2): " + status);
// Here, this method checks whether this
// Instant (ins2) comes after the given
// Instant (ins1) or not i.e. here it
// returns true because ins2 comes after the
// given ins1
status = ins2.isAfter(ins1);
// Display status
System.out.println("ins2.isAfter(ins1): " + status);
}
}
Output
Instant ins1 and ins2:
ins1: 2006-04-03T05:10:15Z
ins2: 2020-05-25T22:38:02.818372Z
ins1.isAfter(ins2): false
ins2.isAfter(ins1): true