org.onetwo.common.convert.Convertor Maven / Gradle / Ivy
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