java.io.Serializable, java.lang.Comparable<KeyInfo.Algorythm>public static enum KeyInfo.Algorythm extends java.lang.Enum<KeyInfo.Algorythm>
| Enum Constant | Description |
|---|---|
AES256 |
|
RSAPrivate |
|
RSAPublic |
|
UNKNOWN |
| Modifier and Type | Method | Description |
|---|---|---|
static KeyInfo.Algorythm |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static KeyInfo.Algorythm[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyInfo.Algorythm UNKNOWN
public static final KeyInfo.Algorythm RSAPublic
public static final KeyInfo.Algorythm RSAPrivate
public static final KeyInfo.Algorythm AES256
public static KeyInfo.Algorythm[] values()
for (KeyInfo.Algorythm c : KeyInfo.Algorythm.values()) System.out.println(c);
public static KeyInfo.Algorythm 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