public enum AsyncRequestState extends java.lang.Enum<AsyncRequestState>
| Enum Constant and Description |
|---|
Completed
Enumeration : Completed
|
Error
Enumeration : Error
|
InProgress
Enumeration : InProgress
|
Queued
Enumeration : Queued
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.Map<java.lang.String,java.lang.String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static AsyncRequestState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncRequestState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncRequestState Queued
public static final AsyncRequestState InProgress
public static final AsyncRequestState Completed
public static final AsyncRequestState Error
public static java.util.Map<java.lang.String,java.lang.String> valuesToEnums
public static AsyncRequestState[] values()
for (AsyncRequestState c : AsyncRequestState.values()) System.out.println(c);
public static AsyncRequestState 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<AsyncRequestState>Copyright © 2020. All Rights Reserved.