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

com.gitee.feizns.convert.method.valueof.TwoParameterValueOfConverter Maven / Gradle / Ivy

package com.gitee.feizns.convert.method.valueof;

import com.gitee.feizns.convert.Converter;
import com.gitee.feizns.convert.method.AbstractMethodConverter;
import com.gitee.feizns.convert.method.valueof.handle.TwoParameterValueOfHandler;

import java.util.Set;

/**
 * @author feizns
 * @since 2019/6/22 0022
 */
public class TwoParameterValueOfConverter extends AbstractMethodConverter {


    @Override
    protected Object to(Object source, Class targetType, Set converters) {
        return new TwoParameterValueOfHandler(source.getClass(), targetType).invoke(source, converters);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy