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