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

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

package com.gitee.feizns.convert.impl;

import com.gitee.feizns.convert.Converter;

/**
 * @author feizns
 * @since 2019/6/15 0015
 */
public class StringConverter implements Converter {

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

    @Override
    public boolean support(Class sourceType, Class targetType) {
        return targetType == String.class;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy