public enum InvalidIvExceptionCause extends java.lang.Enum<InvalidIvExceptionCause>
InvalidIvException to specify the cause of the exception.| Enum Constant and Description |
|---|
IV_INVALID
The supplied IV is invalid.
|
IV_REQUIRED
An IV was not provided.
|
IV_SIZE_INVALID
The supplied IV length is invalid.
|
| Modifier and Type | Method and Description |
|---|---|
static InvalidIvExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvalidIvExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidIvExceptionCause IV_SIZE_INVALID
Resolution: The application should supply a valid IV length and retry.
public static final InvalidIvExceptionCause IV_INVALID
Resolution: The application should supply a valid IV and retry.
public static final InvalidIvExceptionCause IV_REQUIRED
Resolution: The application should supply a valid IV and retry.
public static InvalidIvExceptionCause[] values()
for (InvalidIvExceptionCause c : InvalidIvExceptionCause.values()) System.out.println(c);
public static InvalidIvExceptionCause 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