public enum PollEmptyResult extends java.lang.Enum<PollEmptyResult>
Modifier and Type | Class and Description |
---|---|
static class |
PollEmptyResult.Serializer
For internal use only.
|
Enum Constant and Description |
---|
COMPLETE
The asynchronous job has completed successfully.
|
IN_PROGRESS
The asynchronous job is still in progress.
|
Modifier and Type | Method and Description |
---|---|
static PollEmptyResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PollEmptyResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PollEmptyResult IN_PROGRESS
public static final PollEmptyResult COMPLETE
public static PollEmptyResult[] values()
for (PollEmptyResult c : PollEmptyResult.values()) System.out.println(c);
public static PollEmptyResult 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