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