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

com.gitee.feizns.convert.impl.DateConverter Maven / Gradle / Ivy

package com.gitee.feizns.convert.impl;

import com.gitee.feizns.convert.Converter;
import com.gitee.feizns.convert.DateConvertUtils;

import java.util.Date;

/**
 * @author feizns
 * @since 2019/5/19 0019
 */
public class DateConverter implements Converter {

    @Override
    public Date to(Object source, Class targetType) {
        return DateConvertUtils.to(source, targetType);
    }

    @Override
    public boolean support(Class sourceType, Class targetType) {
        return DateConvertUtils.isSupport(targetType);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy