public static enum ProxyPoolClient.ProxyType extends java.lang.Enum<ProxyPoolClient.ProxyType>
| Enum Constant and Description |
|---|
Anonymous
Proxies that show they are a proxy but don't reveal the original requester
|
Elite
Proxies that don't reveal they are a proxy
|
Transparent
Proxies that show they are a proxy and who the requester was
|
| Modifier and Type | Method and Description |
|---|---|
static ProxyPoolClient.ProxyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProxyPoolClient.ProxyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyPoolClient.ProxyType Transparent
public static final ProxyPoolClient.ProxyType Anonymous
public static final ProxyPoolClient.ProxyType Elite
public static ProxyPoolClient.ProxyType[] values()
for (ProxyPoolClient.ProxyType c : ProxyPoolClient.ProxyType.values()) System.out.println(c);
public static ProxyPoolClient.ProxyType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null