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