com.github.fosin.cdp.util.converter.support.LongToDate Maven / Gradle / Ivy
package com.github.fosin.cdp.util.converter.support;
import org.springframework.core.convert.converter.Converter;
import java.util.Date;
/**
* LongToDate class.
*
* @author 28860823
* @version $Id: $
*/
public class LongToDate implements Converter {
/** {@inheritDoc} */
@Override
public Date convert(Long source) {
return new Date(source);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy