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