public static enum Proxy.ProxyState extends Enum<Proxy.ProxyState>
| Enum Constant and Description |
|---|
PN_PROXY_CHALLENGE |
PN_PROXY_CHALLENGE_RESPONDED |
PN_PROXY_CONNECTED |
PN_PROXY_CONNECTING |
PN_PROXY_FAILED |
PN_PROXY_NOT_STARTED |
| Modifier and Type | Method and Description |
|---|---|
static Proxy.ProxyState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Proxy.ProxyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Proxy.ProxyState PN_PROXY_NOT_STARTED
public static final Proxy.ProxyState PN_PROXY_CONNECTING
public static final Proxy.ProxyState PN_PROXY_CHALLENGE
public static final Proxy.ProxyState PN_PROXY_CHALLENGE_RESPONDED
public static final Proxy.ProxyState PN_PROXY_CONNECTED
public static final Proxy.ProxyState PN_PROXY_FAILED
public static Proxy.ProxyState[] values()
for (Proxy.ProxyState c : Proxy.ProxyState.values()) System.out.println(c);
public static Proxy.ProxyState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.