public enum AesCtrCounterExceptionCause extends java.lang.Enum<AesCtrCounterExceptionCause>
AesCtrCounterException to specify the cause of the exception.| Enum Constant and Description |
|---|
EXHAUSTED
The counter for an AES CTR operation has been exhausted.
|
| Modifier and Type | Method and Description |
|---|---|
static AesCtrCounterExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AesCtrCounterExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AesCtrCounterExceptionCause EXHAUSTED
Resolution: Counter exhausted, retry with a new counter block.
public static AesCtrCounterExceptionCause[] values()
for (AesCtrCounterExceptionCause c : AesCtrCounterExceptionCause.values()) System.out.println(c);
public static AesCtrCounterExceptionCause 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