public static enum RemoteProxyActions.RemoteProxyProtocol extends Enum<RemoteProxyActions.RemoteProxyProtocol>
| Enum Constant and Description |
|---|
REST
REST protocol
|
| Modifier and Type | Method and Description |
|---|---|
String |
value()
Return the string value of the proxy protocol.
|
static RemoteProxyActions.RemoteProxyProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteProxyActions.RemoteProxyProtocol[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final RemoteProxyActions.RemoteProxyProtocol REST
public static RemoteProxyActions.RemoteProxyProtocol[] values()
for (RemoteProxyActions.RemoteProxyProtocol c : RemoteProxyActions.RemoteProxyProtocol.values())
System.out.println(c);
public static RemoteProxyActions.RemoteProxyProtocol 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 nullpublic String value()