| Enum Constant and Description |
|---|
KEYSIZE_1024
The keysize of 1024 bits.
|
KEYSIZE_2048
The keysize of 2048 bits.
|
KEYSIZE_4096
The keysize of 4096 bits.
|
KEYSIZE_8192
The keysize of 8192 bits.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Integer |
getKeySize() |
java.lang.String |
toString() |
static KeySize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeySize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeySize KEYSIZE_1024
public static final KeySize KEYSIZE_2048
public static final KeySize KEYSIZE_4096
public static final KeySize KEYSIZE_8192
public static KeySize[] values()
for (KeySize c : KeySize.values()) System.out.println(c);
public static KeySize 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 nullpublic java.lang.Integer getKeySize()
public java.lang.String toString()
toString in class java.lang.Enum<KeySize>