private static enum CipherText.CipherTextFlags extends java.lang.Enum<CipherText.CipherTextFlags>
| Enum Constant and Description |
|---|
ALGNAME |
BLOCKSIZE |
CIPHERMODE |
CIPHERTEXT |
INITVECTOR |
KEYSIZE |
PADDING |
| Modifier and Type | Method and Description |
|---|---|
static CipherText.CipherTextFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CipherText.CipherTextFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CipherText.CipherTextFlags ALGNAME
public static final CipherText.CipherTextFlags CIPHERMODE
public static final CipherText.CipherTextFlags PADDING
public static final CipherText.CipherTextFlags KEYSIZE
public static final CipherText.CipherTextFlags BLOCKSIZE
public static final CipherText.CipherTextFlags CIPHERTEXT
public static final CipherText.CipherTextFlags INITVECTOR
public static CipherText.CipherTextFlags[] values()
for (CipherText.CipherTextFlags c : CipherText.CipherTextFlags.values()) System.out.println(c);
public static CipherText.CipherTextFlags 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