public enum ProxyConfigurationType extends Enum<ProxyConfigurationType>
| Enum Constant and Description |
|---|
AUTO_DETECT |
MANUAL_PROXY |
NO_PROXY |
USE_SYSTEM_PROXY |
| Modifier and Type | Method and Description |
|---|---|
static ProxyConfigurationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProxyConfigurationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyConfigurationType NO_PROXY
public static final ProxyConfigurationType AUTO_DETECT
public static final ProxyConfigurationType USE_SYSTEM_PROXY
public static final ProxyConfigurationType MANUAL_PROXY
public static ProxyConfigurationType[] values()
for (ProxyConfigurationType c : ProxyConfigurationType.values()) System.out.println(c);
public static ProxyConfigurationType 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 © 2021. All rights reserved.