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

top.jfunc.common.string.ToString Maven / Gradle / Ivy

There is a newer version: 1.8.5
Show newest version
package top.jfunc.common.string;

/**
 * 方法泛型,可以针对很多类统一处理
 * @see ToStringHandler
 * @author xiongshiyan at 2019/5/6 , contact me with email [email protected] or phone 15208384257
 */
@FunctionalInterface
public interface ToString {
    /**
     * 可能是基于Json、XML或者自定义的将一个对象转换为String
     * @param o Java对象 Bean、Map、List等
     * @return String
     */
    String toString(Object o);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy