public enum ProxyModeType extends java.lang.Enum<ProxyModeType>
Enum Constant and Description |
---|
Custom
Custom proxy settings
|
Envirenment
Envirenment/System settings
|
None
No mode - do not use proxy
|
Modifier and Type | Method and Description |
---|---|
static ProxyModeType |
fromInt(int i) |
static ProxyModeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProxyModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyModeType None
public static final ProxyModeType Envirenment
public static final ProxyModeType Custom
public static ProxyModeType[] values()
for (ProxyModeType c : ProxyModeType.values()) System.out.println(c);
public static ProxyModeType 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 nullpublic static ProxyModeType fromInt(int i)