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