cn.hutool.core.lang.ansi.AnsiStyle 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;
import cn.hutool.core.util.StrUtil;
/**
* ANSI文本样式风格枚举
*
* 来自Spring Boot
*
* @author Phillip Webb
* @since 5.8.0
*/
public enum AnsiStyle implements AnsiElement {
/**
* 重置/正常
*/
NORMAL(0),
/**
* 粗体或增加强度
*/
BOLD(1),
/**
* 弱化(降低强度)
*/
FAINT(2),
/**
* 斜体
*/
ITALIC(3),
/**
* 下划线
*/
UNDERLINE(4);
private final int code;
AnsiStyle(int code) {
this.code = code;
}
/**
* 获取ANSI文本样式风格代码
*
* @return 文本样式风格代码
*/
@Override
public int getCode() {
return this.code;
}
@Override
public String toString() {
return StrUtil.toString(this.code);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy