public enum HttpProxyType extends Enum<HttpProxyType>
| 限定符和类型 | 方法和说明 |
|---|---|
static HttpProxyType |
findByCode(int code)
通过错误代码查找其中文含义..
|
int |
getCode() |
static HttpProxyType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static HttpProxyType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final HttpProxyType NONE
public static final HttpProxyType REVERSE
public static final HttpProxyType FORWARD
public static HttpProxyType[] values()
for (HttpProxyType c : HttpProxyType.values()) System.out.println(c);
public static HttpProxyType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getCode()
public static HttpProxyType findByCode(int code)
Copyright © 2021. All rights reserved.