Enum Constant | Description |
---|---|
BAD_CLIENT_KEY |
|
BAD_NEW_ITEM |
|
BAD_REF |
Approvable item of unknown type or general reference error
|
BAD_REVOKE |
can't revoke requested item
|
BAD_SIGNATURE |
|
BAD_VALUE |
|
BADSTATE |
New state is bad in general (say, not changed)
|
COMMAND_FAILED |
|
COMMAND_PENDING |
|
EXPIRED |
|
FAILED_CHECK |
Too many errors, the check could not be done at full.
|
FAILURE |
General error of unknown type
|
FORBIDDEN |
Issuer/creator has no right to perform requested change, revocation, etc.
|
ILLEGAL_CHANGE |
|
ISSUER_MUST_CREATE |
|
MISSING_CREATOR |
|
MISSING_ISSUER |
|
MISSING_OWNER |
|
NEW_ITEM_EXISTS |
|
NOT_FOUND |
|
NOT_READY |
|
NOT_SIGNED |
|
NOT_SUPPORTED |
|
UNKNOWN_COMMAND |
Modifier and Type | Method | Description |
---|---|---|
static Errors |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Errors[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Errors NOT_SUPPORTED
public static final Errors BAD_VALUE
public static final Errors EXPIRED
public static final Errors MISSING_OWNER
public static final Errors MISSING_ISSUER
public static final Errors MISSING_CREATOR
public static final Errors ISSUER_MUST_CREATE
public static final Errors NOT_SIGNED
public static final Errors FORBIDDEN
public static final Errors FAILED_CHECK
public static final Errors BAD_REF
public static final Errors BAD_SIGNATURE
public static final Errors BAD_REVOKE
public static final Errors BAD_NEW_ITEM
public static final Errors NEW_ITEM_EXISTS
public static final Errors ILLEGAL_CHANGE
public static final Errors BADSTATE
public static final Errors FAILURE
public static final Errors BAD_CLIENT_KEY
public static final Errors UNKNOWN_COMMAND
public static final Errors NOT_READY
public static final Errors NOT_FOUND
public static final Errors COMMAND_FAILED
public static final Errors COMMAND_PENDING
public static Errors[] values()
for (Errors c : Errors.values()) System.out.println(c);
public static Errors 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 namejava.lang.NullPointerException
- if the argument is null