LocalTime isBefore() method in Java with Examples

The isBefore() method of a LocalTime class is used to check if this LocalTime timeline position is before the LocalTime passed as parameter or not. If this LocalTime timeline position is before the LocalTime passed as a parameter then the method will return true else false. The comparison is based on the time-line position of the instants.

Syntax:

public boolean isBefore(LocalTime other)

Parameters: This method accepts a single parameter other which is the other LocalTime object to compare to. It should not be null.

Return value: This method returns true if this time is before the specified time, else false.

Below programs illustrate the isBefore() method:

Program 1:




// Java program to demonstrate
// LocalTime.isBefore() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime object
        LocalTime time1
            = LocalTime.parse("19:34:50.63");
  
        // create other LocalTime
        LocalTime time2
            = LocalTime.parse("23:14:00.63");
  
        // print instances
        System.out.println("LocalTime 1: " + time1);
        System.out.println("LocalTime 2: " + time2);
  
        // check if LocalTime is before LocalTime
        // using isBefore()
        boolean value = time1.isBefore(time2);
  
        // print result
        System.out.println("Is LocalTime1 before LocalTime2: "
                           + value);
    }
}


Output:

LocalTime 1: 19:34:50.630
LocalTime 2: 23:14:00.630
Is LocalTime1 before LocalTime2: true

Program 2:




// Java program to demonstrate
// LocalTime.isBefore() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime object
        LocalTime time1
            = LocalTime.parse("23:59:11.98");
  
        // create other LocalTime
        LocalTime time2
            = LocalTime.parse("10:24:53.21");
  
        // print instances
        System.out.println("LocalTime 1: " + time1);
        System.out.println("LocalTime 2: " + time2);
  
        // check if LocalTime is before LocalTime
        // using isBefore()
        boolean value = time1.isBefore(time2);
  
        // print result
        System.out.println("Is LocalTime1 before LocalTime2: "
                           + value);
    }
}


Output:

LocalTime 1: 23:59:11.980
LocalTime 2: 10:24:53.210
Is LocalTime1 before LocalTime2: false

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#isBefore(java.time.LocalTime)



Contact Us