public static enum IProxy.ProxyType extends Enum<IProxy.ProxyType>
| Enum Constant and Description |
|---|
HTTP |
HTTPStore |
Local
A local proxy supported through
LocalReaderProxy and LocalWriterProxy |
LocalStore
A local store proxy supported through
LocalStoreReaderProxy and LocalStoreWriterProxy |
TCP
A TCP proxy supported through
TCPReaderProxy and TCPWriterProxy |
TCPStore
A TCP store proxy supported through
TCPStoreReaderProxy and TCPStoreWriterProxy |
| Modifier and Type | Method and Description |
|---|---|
static IProxy.ProxyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IProxy.ProxyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IProxy.ProxyType Local
LocalReaderProxy and LocalWriterProxypublic static final IProxy.ProxyType TCP
TCPReaderProxy and TCPWriterProxypublic static final IProxy.ProxyType LocalStore
LocalStoreReaderProxy and LocalStoreWriterProxypublic static final IProxy.ProxyType TCPStore
TCPStoreReaderProxy and TCPStoreWriterProxypublic static final IProxy.ProxyType HTTP
public static final IProxy.ProxyType HTTPStore
public static IProxy.ProxyType[] values()
for (IProxy.ProxyType c : IProxy.ProxyType.values()) System.out.println(c);
public static IProxy.ProxyType 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 © 2014. All Rights Reserved.