public enum ProxyMode extends java.lang.Enum<ProxyMode>
ISystemProperties.getProxyMode()
Interface ID: {885264B3-B517-40FC-CE46-36E3BAE895A4}Enum Constant and Description |
---|
Manual
Use the manual proxy from
ISystemProperties.getProxyURL() . |
NoProxy
Direct connection to the Internet.
|
System
Use the system proxy settings as far as possible.
|
Modifier and Type | Method and Description |
---|---|
static ProxyMode |
fromValue(long v) |
static ProxyMode |
fromValue(java.lang.String v) |
int |
value() |
static ProxyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProxyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyMode System
public static final ProxyMode NoProxy
public static final ProxyMode Manual
ISystemProperties.getProxyURL()
.public static ProxyMode[] values()
for (ProxyMode c : ProxyMode.values()) System.out.println(c);
public static ProxyMode 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 int value()
public static ProxyMode fromValue(long v)
public static ProxyMode fromValue(java.lang.String v)