public enum KeyUsageBit extends Enum<KeyUsageBit>
| Enum Constant and Description |
|---|
crlSign |
dataEncipherment |
decipherOnly |
digitalSignature |
encipherOnly |
keyAgreement |
keyCertSign |
keyEncipherment |
nonRepudiation |
| Modifier and Type | Method and Description |
|---|---|
int |
getIndex() |
static KeyUsageBit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyUsageBit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyUsageBit digitalSignature
public static final KeyUsageBit nonRepudiation
public static final KeyUsageBit keyEncipherment
public static final KeyUsageBit dataEncipherment
public static final KeyUsageBit keyAgreement
public static final KeyUsageBit keyCertSign
public static final KeyUsageBit crlSign
public static final KeyUsageBit encipherOnly
public static final KeyUsageBit decipherOnly
public static KeyUsageBit[] values()
for (KeyUsageBit c : KeyUsageBit.values()) System.out.println(c);
public static KeyUsageBit 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 nullpublic int getIndex()
Copyright © 2018. All rights reserved.