
top.jfunc.common.string.ToStringHandler 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 ToString
* @author xiongshiyan at 2019/5/6 , contact me with email [email protected] or phone 15208384257
*/
@FunctionalInterface
public interface ToStringHandler {
/**
* 可能是基于Json、XML或者自定义的将一个对象转换为String
* @param o Java对象 Bean、Map、List等
* @return String
*/
String toString(T o);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy