public static enum ResponseValidator.ResponseType extends Enum<ResponseValidator.ResponseType>
Enum Constant and Description |
---|
SUSPENSION_FAILURE |
TEMPORARY_ERROR |
VALID |
Modifier and Type | Method and Description |
---|---|
static ResponseValidator.ResponseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseValidator.ResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseValidator.ResponseType VALID
public static final ResponseValidator.ResponseType SUSPENSION_FAILURE
public static final ResponseValidator.ResponseType TEMPORARY_ERROR
public static ResponseValidator.ResponseType[] values()
for (ResponseValidator.ResponseType c : ResponseValidator.ResponseType.values()) System.out.println(c);
public static ResponseValidator.ResponseType 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 © 2010–2016 AdroitLogic. All rights reserved.