public enum LogStrategy extends Enum<LogStrategy>
| 枚举常量和说明 |
|---|
BASIC
Logs request and response lines.
|
BODY
Logs request and response lines and their respective headers and bodies (if present).
|
HEADERS
Logs request and response lines and their respective headers.
|
NONE
No logs.
|
public static final LogStrategy NONE
public static final LogStrategy BASIC
public static final LogStrategy HEADERS
public static final LogStrategy BODY
public static LogStrategy[] values()
for (LogStrategy c : LogStrategy.values()) System.out.println(c);
public static LogStrategy valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024. All rights reserved.