is LocalDateTime Later - Java java.time

Java examples for java.time:LocalDateTime

Description

is LocalDateTime Later

Demo Code


//package com.java2s;

import java.time.LocalDateTime;

public class Main {
    public static boolean isLater(LocalDateTime baseline, LocalDateTime than) {
        return baseline.compareTo(than) > 0;
    }//from www.j  a v  a2s . c  o m
}

Related Tutorials