1 Star 0 Fork 342

大哥 / source-code-hunter

forked from doocs / source-code-hunter 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Spring-Printer.md 406 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanglbme 提交于 2020-12-10 03:06 . docs: prettify code

Spring Printer

  • 类全路径: org.springframework.format.Printer
  • 类作用: 对象转换成字符串
@FunctionalInterface
public interface Printer<T> {

	/**
	 * Print the object of type T for display.
	 * 打印对象
	 * @param object the instance to print
	 * @param locale the current user locale
	 * @return the printed text string
	 */
	String print(T object, Locale locale);

}
1
https://gitee.com/dagechen/source-code-hunter.git
git@gitee.com:dagechen/source-code-hunter.git
dagechen
source-code-hunter
source-code-hunter
main

搜索帮助