public enum PollEmptyResult extends Enum<PollEmptyResult>
| Modifier and Type | Class and Description | 
|---|---|
| static class  | PollEmptyResult.SerializerFor internal use only. | 
| Enum Constant and Description | 
|---|
| COMPLETEThe asynchronous job has completed successfully. | 
| IN_PROGRESSThe asynchronous job is still in progress. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PollEmptyResult | valueOf(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(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