public static enum IChannelProxy.ProxyConnector extends Enum<IChannelProxy.ProxyConnector>
| Enum Constant and Description |
|---|
Local
Only a local proxy should be used.
|
TCP
A TCP proxy will be used which will create a new TCP listener on some Port.
|
| Modifier and Type | Method and Description |
|---|---|
static IChannelProxy.ProxyConnector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IChannelProxy.ProxyConnector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IChannelProxy.ProxyConnector Local
public static final IChannelProxy.ProxyConnector TCP
public static IChannelProxy.ProxyConnector[] values()
for (IChannelProxy.ProxyConnector c : IChannelProxy.ProxyConnector.values()) System.out.println(c);
public static IChannelProxy.ProxyConnector 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 © 2018. All Rights Reserved.