public static enum Cipher.CipherState extends Enum<Cipher.CipherState>
| Modifier and Type | Method and Description |
|---|---|
static Cipher.CipherState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cipher.CipherState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cipher.CipherState SECURE
public static final Cipher.CipherState INSECURE
public static final Cipher.CipherState UNKNOWN
public static Cipher.CipherState[] values()
for (Cipher.CipherState c : Cipher.CipherState.values()) System.out.println(c);
public static Cipher.CipherState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2022. All rights reserved.