枚举 LogLevel
- 所有已实现的接口:
Serializable,Comparable<LogLevel>,java.lang.constant.Constable
日志级别
- 作者:
- macro
-
枚举常量详细资料
-
NONE
No logs. -
BASIC
Logs request and response lines.Example:
--> POST /greeting http/1.1 (3-byte body) <-- 200 OK (22ms, 6-byte body) -
HEADERS
Logs request and response lines and their respective headers.Example:
--> POST /greeting http/1.1 Host: example.com Content-Type: plain/text Content-Length: 3 --> END POST <-- 200 OK (22ms) Content-Type: plain/text Content-Length: 6 <-- END HTTP -
BODY
Logs request and response lines and their respective headers and bodies (if present).Example:
--> POST /greeting http/1.1 Host: example.com Content-Type: plain/text Content-Length: 3 Hi? --> END POST <-- 200 OK (22ms) Content-Type: plain/text Content-Length: 6 Hello! <-- END HTTP
-
-
方法详细资料
-
values
按照声明该枚举类型的常量的顺序, 返回一个包含这些常量的数组。- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- 如果该枚举类型没有带有指定名称的常量NullPointerException- 如果参数为空值
-