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

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

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

import java.util.Date;

public class Date2LongConvert extends AbstractConver {
    @Override
    public Long convert(Date date) {
        return date.getTime();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy