public enum KeySize extends Enum<KeySize>
| Enum Constant and Description |
|---|
KS1024 |
KS2048 |
KS3072 |
KS4096 |
KS512 |
KS8192 |
| Modifier and Type | Method and Description |
|---|---|
static List<KeySize> |
allSupportedSizes() |
static KeySize |
from(String key) |
static KeySize |
valueOf(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 KS512
public static final KeySize KS1024
public static final KeySize KS2048
public static final KeySize KS3072
public static final KeySize KS4096
public static final KeySize KS8192
public static KeySize[] values()
for (KeySize c : KeySize.values()) System.out.println(c);
public static KeySize 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 © 2021. All rights reserved.