public enum WaitForTaskToComplete extends java.lang.Enum<WaitForTaskToComplete>
| Enum Constant and Description |
|---|
Always |
IfReplyExpected |
Never |
| Modifier and Type | Method and Description |
|---|---|
static WaitForTaskToComplete |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2007-2014 Red Hat, Inc.. All Rights Reserved.