public static enum Cipher.CryptMode extends java.lang.Enum<Cipher.CryptMode>
| Modifier and Type | Method and Description |
|---|---|
static Cipher.CryptMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cipher.CryptMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cipher.CryptMode ENCRYPT
public static final Cipher.CryptMode DECRYPT
public static Cipher.CryptMode[] values()
for (Cipher.CryptMode c : Cipher.CryptMode.values()) System.out.println(c);
public static Cipher.CryptMode 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