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