summaryrefslogtreecommitdiff
path: root/src/lq/DateUtil.java
blob: 7b91a9aa6a3e6dda958b9d9692ecd16e45c6dcf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package lq;

import java.text.DateFormat;
import java.text.SimpleDateFormat;

public final class DateUtil {
    public static final SimpleDateFormat dateFormat =
        new SimpleDateFormat("yyyy-MM-dd");

    public static final SimpleDateFormat timestampFormat =
        new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    private DateUtil() {
    }
}