cn.hutool.core.lang.ansi.AnsiElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.core.lang.ansi;
/**
* ANSI可转义节点接口,实现为ANSI颜色等
*
* 来自Spring Boot
*
* @author Phillip Webb
*/
public interface AnsiElement {
/**
* @return ANSI转义编码
*/
@Override
String toString();
/**
* 获取ANSI代码,默认返回-1
* @return ANSI代码
* @since 5.8.7
*/
default int getCode(){
return -1;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy