public static enum KeyManagerPolicy.KeyUsage extends java.lang.Enum<KeyManagerPolicy.KeyUsage>
Enum Constant and Description |
---|
cRLSign |
dataEncipherment |
decipherOnly |
digitalSignature |
encipherOnly |
keyAgreement |
keyCertSign |
keyEncipherment |
nonRepudiation |
Modifier and Type | Method and Description |
---|---|
static KeyManagerPolicy.KeyUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyManagerPolicy.KeyUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyManagerPolicy.KeyUsage digitalSignature
public static final KeyManagerPolicy.KeyUsage nonRepudiation
public static final KeyManagerPolicy.KeyUsage keyEncipherment
public static final KeyManagerPolicy.KeyUsage dataEncipherment
public static final KeyManagerPolicy.KeyUsage keyAgreement
public static final KeyManagerPolicy.KeyUsage keyCertSign
public static final KeyManagerPolicy.KeyUsage cRLSign
public static final KeyManagerPolicy.KeyUsage encipherOnly
public static final KeyManagerPolicy.KeyUsage decipherOnly
public static KeyManagerPolicy.KeyUsage[] values()
for (KeyManagerPolicy.KeyUsage c : KeyManagerPolicy.KeyUsage.values()) System.out.println(c);
public static KeyManagerPolicy.KeyUsage 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 null