public enum InvalidEcParameterExceptionCause extends java.lang.Enum<InvalidEcParameterExceptionCause>
InvalidEcParameterException to specify the cause of the exception.| Enum Constant and Description |
|---|
INVALID_COFACTOR
The provided cofactor parameter is invalid.
|
MISSING_REQUIRED_FIELD
An EC Parameter field is missing.
|
NULL_EC_PARAMETER
The provided EC Parameter must not be NULL.
|
UNSUPPORTED_EC_FIELD
The provided EC Field is unsupported.
|
UNSUPPORTED_EC_PARAMETER
The provided EC Parameter is unsupported.
|
| Modifier and Type | Method and Description |
|---|---|
static InvalidEcParameterExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvalidEcParameterExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidEcParameterExceptionCause UNSUPPORTED_EC_PARAMETER
Resolution: The application should retry with a supported EC Parameter.
public static final InvalidEcParameterExceptionCause UNSUPPORTED_EC_FIELD
Resolution: The application should provide supported EC Field and retry.
public static final InvalidEcParameterExceptionCause INVALID_COFACTOR
Resolution: The application should provide valid cofactor of EC Parameter.
public static final InvalidEcParameterExceptionCause MISSING_REQUIRED_FIELD
Resolution: The application should provide all required EC Parameter fields.
public static final InvalidEcParameterExceptionCause NULL_EC_PARAMETER
Resolution: The application should provide EC Parameter that is not NULL.
public static InvalidEcParameterExceptionCause[] values()
for (InvalidEcParameterExceptionCause c : InvalidEcParameterExceptionCause.values()) System.out.println(c);
public static InvalidEcParameterExceptionCause 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