Here you can find the source of before(LocalDateTime time1, LocalDateTime time2)
public static boolean before(LocalDateTime time1, LocalDateTime time2)
//package com.java2s; import java.time.LocalDateTime; public class Main { public static boolean before(LocalDateTime time1, LocalDateTime time2) { return time1.isBefore(time2); }/* ww w. j a v a 2 s . c o m*/ }