public enum InterceptPhase extends Enum<InterceptPhase>
| 枚举常量和说明 |
|---|
AUTH_REQUIRED |
BEFORE_REQUEST_SENT |
RESPONSE_STARTED |
public static final InterceptPhase BEFORE_REQUEST_SENT
public static final InterceptPhase RESPONSE_STARTED
public static final InterceptPhase AUTH_REQUIRED
public static InterceptPhase[] values()
for (InterceptPhase c : InterceptPhase.values()) System.out.println(c);
public static InterceptPhase valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String toString()
toString 在类中 Enum<InterceptPhase>Copyright © 2020–2025. All rights reserved.