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

com.grosner.dbflow.converter.SqlDateConverter Maven / Gradle / Ivy

package com.grosner.dbflow.converter;

import java.sql.Date;

/**
 * Author: andrewgrosner
 * Description: Defines how we store and retrieve a {@link java.sql.Date}
 */
public class SqlDateConverter extends TypeConverter {

    @Override
    public Long getDBValue(Date model) {
        return model.getTime();
    }

    @Override
    public Date getModelValue(Long data) {
        return new Date(data);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy