public enum RsaKeyTypeEnum extends Enum<RsaKeyTypeEnum>
| Enum Constant and Description |
|---|
PRIVATE_KEY |
PUBLIC_KEY |
| Modifier and Type | Method and Description |
|---|---|
static RsaKeyTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RsaKeyTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RsaKeyTypeEnum PRIVATE_KEY
public static final RsaKeyTypeEnum PUBLIC_KEY
public static RsaKeyTypeEnum[] values()
for (RsaKeyTypeEnum c : RsaKeyTypeEnum.values()) System.out.println(c);
public static RsaKeyTypeEnum 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 © 2022. All rights reserved.