|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ServiceResponse.Status>
com.fatwire.services.beans.ServiceResponse.Status
public static enum ServiceResponse.Status
An enumeration of possible states which a response can have.
Enum Constant Summary | |
---|---|
ERROR
ERROR - generic error state |
|
REFERENCED
REFERENCED - the asset for this asset id has references
which must be handled before the asset can be operated on |
|
SUCCESS
SUCCESS - generic success state |
Method Summary | |
---|---|
java.lang.Integer |
status()
Returns the integer status code associated with this status. |
static ServiceResponse.Status |
toEnum(int code)
Returns a status enum, given the status code. |
static ServiceResponse.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ServiceResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ServiceResponse.Status SUCCESS
SUCCESS
- generic success state
public static final ServiceResponse.Status REFERENCED
REFERENCED
- the asset for this asset id has references
which must be handled before the asset can be operated on
public static final ServiceResponse.Status ERROR
ERROR
- generic error state
Method Detail |
---|
public static ServiceResponse.Status[] values()
for (ServiceResponse.Status c : ServiceResponse.Status.values()) System.out.println(c);
public static ServiceResponse.Status 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.Integer status()
public static ServiceResponse.Status toEnum(int code)
code
- the code to match for, case-sensitive.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |