Java Timestamp.after(Timestamp ts)
Syntax
Timestamp.after(Timestamp ts) has the following syntax.
public boolean after(Timestamp ts)
Example
In the following code shows how to use Timestamp.after(Timestamp ts) method.
/*w ww . j a va 2s.c om*/
public class Main {
public static void main(String[] args) {
java.sql.Timestamp ts1 = java.sql.Timestamp.valueOf("2012-04-06 09:01:10");
java.sql.Timestamp ts2 = java.sql.Timestamp.valueOf("2013-04-06 09:01:10");
System.out.println(ts1.after(ts2));
}
}
The code above generates the following result.