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

org.onetwo.common.convert.Convertor Maven / Gradle / Ivy

There is a newer version: 4.7.2
Show newest version
package org.onetwo.common.convert;

public interface Convertor {

	public Convertor register(TypeConvert convertor, Class clazz);

	public  T convert(Object value, Class targetClass);
	public  T convert(Object value, Class targetClass, Class componentType);
	

	public  T convertNotNull(Object source, Class componentType);
	public  T convertNotNull(Object value, Class targetClass, Class componentType);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy