
top.jfunc.common.string.FromString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-utils Show documentation
Show all versions of common-utils Show documentation
common utils like IOUtil,StrUtil,HoldProcessor.etc.
The newest version!
package top.jfunc.common.string;
/**
* 方法泛型,可以针对很多类统一处理
* @see FromStringHandler
* @author xiongshiyan at 2019/5/6 , contact me with email [email protected] or phone 15208384257
*/
@FunctionalInterface
public interface FromString {
/**
* 可能是基于Json、XML或者自定义的将String转换为Java对象
* @param src 字符串
* @param toClass 转换成的class
* @return T
*/
T as(String src, Class toClass);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy