public enum ProxySupport extends Enum<ProxySupport>
Enum Constant and Description |
---|
ALLOW
All kinds of proxies are allowed
|
DENY
All kinds of proxies are denied
|
Modifier and Type | Method and Description |
---|---|
static ProxySupport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProxySupport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxySupport ALLOW
public static final ProxySupport DENY
public static ProxySupport[] values()
for (ProxySupport c : ProxySupport.values()) System.out.println(c);
public static ProxySupport 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 © 2012-2017 European Middleware Initiative. All Rights Reserved.