public static enum JwsException.Error extends Enum<JwsException.Error>
Enum Constant and Description |
---|
ALGORITHM_NOT_SET |
INVALID_ALGORITHM |
INVALID_COMPACT_JWS |
INVALID_JSON_JWS |
INVALID_KEY |
INVALID_SIGNATURE |
NO_INIT_PROPERTIES |
NO_PROVIDER |
NO_VERIFIER |
SIGNATURE_FAILURE |
Modifier and Type | Method and Description |
---|---|
static JwsException.Error |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JwsException.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JwsException.Error NO_PROVIDER
public static final JwsException.Error NO_VERIFIER
public static final JwsException.Error NO_INIT_PROPERTIES
public static final JwsException.Error ALGORITHM_NOT_SET
public static final JwsException.Error INVALID_ALGORITHM
public static final JwsException.Error INVALID_KEY
public static final JwsException.Error SIGNATURE_FAILURE
public static final JwsException.Error INVALID_SIGNATURE
public static final JwsException.Error INVALID_COMPACT_JWS
public static final JwsException.Error INVALID_JSON_JWS
public static JwsException.Error[] values()
for (JwsException.Error c : JwsException.Error.values()) System.out.println(c);
public static JwsException.Error 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 nullApache CXF