public static enum ProcessBundle.Channel extends Enum<ProcessBundle.Channel>
| Enum Constant and Description |
|---|
BACKGROUND |
DIRECT |
SCHEDULED |
WEBSERVICE |
| Modifier and Type | Method and Description |
|---|---|
static ProcessBundle.Channel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessBundle.Channel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessBundle.Channel DIRECT
public static final ProcessBundle.Channel BACKGROUND
public static final ProcessBundle.Channel SCHEDULED
public static final ProcessBundle.Channel WEBSERVICE
public static ProcessBundle.Channel[] values()
for (ProcessBundle.Channel c : ProcessBundle.Channel.values()) System.out.println(c);
public static ProcessBundle.Channel 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 null