public static enum ConsistencyChecker.CHECK extends Enum<ConsistencyChecker.CHECK>
| Enum Constant and Description |
|---|
NOT_FOUND
Not Found.
|
SERVER_ERROR
Server Error.
|
SUCCESS
If the check was all right
|
UNAUTHORIZED
Unauthorized.
|
UNKNOWN
If the check may be too long
|
| Modifier and Type | Method and Description |
|---|---|
static ConsistencyChecker.CHECK |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsistencyChecker.CHECK[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsistencyChecker.CHECK SUCCESS
public static final ConsistencyChecker.CHECK SERVER_ERROR
public static final ConsistencyChecker.CHECK NOT_FOUND
public static final ConsistencyChecker.CHECK UNAUTHORIZED
public static final ConsistencyChecker.CHECK UNKNOWN
public static ConsistencyChecker.CHECK[] values()
for (ConsistencyChecker.CHECK c : ConsistencyChecker.CHECK.values()) System.out.println(c);
public static ConsistencyChecker.CHECK 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