public enum RequestChannels extends Enum<RequestChannels>
RequestContext| Enum Constant and Description |
|---|
BATCH |
FTP |
HTTP_HTML |
HTTP_REST |
HTTP_SOAP |
JMS |
JMS_SOAP |
| Modifier and Type | Method and Description |
|---|---|
static RequestChannels |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestChannels[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestChannels HTTP_HTML
public static final RequestChannels HTTP_SOAP
public static final RequestChannels HTTP_REST
public static final RequestChannels JMS
public static final RequestChannels JMS_SOAP
public static final RequestChannels FTP
public static final RequestChannels BATCH
public static RequestChannels[] values()
for (RequestChannels c : RequestChannels.values()) System.out.println(c);
public static RequestChannels 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 © 2020. All rights reserved.