public static enum Request.ProcessingState extends Enum<Request.ProcessingState>
Enum Constant and Description |
---|
CANCELED |
DONE |
PROCESSING |
Modifier and Type | Method and Description |
---|---|
static Request.ProcessingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Request.ProcessingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Request.ProcessingState PROCESSING
public static final Request.ProcessingState DONE
public static final Request.ProcessingState CANCELED
public static Request.ProcessingState[] values()
for (Request.ProcessingState c : Request.ProcessingState.values()) System.out.println(c);
public static Request.ProcessingState 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 nullCopyright © 2013-2014 JBoss by Red Hat. All Rights Reserved.