All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.javaoffers.brief.modelhelper.convert.Date2StringConvert Maven / Gradle / Ivy

There is a newer version: 3.6.8
Show newest version
package com.javaoffers.brief.modelhelper.convert;

import org.apache.commons.lang3.time.DateFormatUtils;

import java.util.Date;

public class Date2StringConvert extends AbstractConver {

    @Override
    public String convert(Date date) {
        return DateFormatUtils.format(date,"yyyy-MM-dd HH:mm:ss");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy