public static enum CipherOptions.CIPHER extends java.lang.Enum<CipherOptions.CIPHER>
Enum Constant and Description |
---|
AES |
AES_SMS4 |
AES_TWOFISH |
ALL |
SMS4 |
SMS4_TWOFISH |
TWOFISH |
Modifier and Type | Method and Description |
---|---|
static CipherOptions.CIPHER |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CipherOptions.CIPHER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CipherOptions.CIPHER AES
public static final CipherOptions.CIPHER SMS4
public static final CipherOptions.CIPHER TWOFISH
public static final CipherOptions.CIPHER AES_SMS4
public static final CipherOptions.CIPHER AES_TWOFISH
public static final CipherOptions.CIPHER SMS4_TWOFISH
public static final CipherOptions.CIPHER ALL
public static CipherOptions.CIPHER[] values()
for (CipherOptions.CIPHER c : CipherOptions.CIPHER.values()) System.out.println(c);
public static CipherOptions.CIPHER 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