Package org.xipki.security
Enum KeyUsage
- java.lang.Object
-
- java.lang.Enum<KeyUsage>
-
- org.xipki.security.KeyUsage
-
- All Implemented Interfaces:
Serializable,Comparable<KeyUsage>
public enum KeyUsage extends Enum<KeyUsage>
Certificate key usage enum.- Since:
- 2.0.0
- Author:
- Lijun Liao (xipki)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description contentCommitmentcRLSigndataEnciphermentdecipherOnlydigitalSignatureencipherOnlykeyAgreementkeyCertSignkeyEncipherment
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBcUsage()intgetBit()static KeyUsagegetKeyUsage(int bit)static KeyUsagegetKeyUsage(String usage)static KeyUsagegetKeyUsageFromBcUsage(int bcUsage)StringgetName()static KeyUsagevalueOf(String name)Returns the enum constant of this type with the specified name.static KeyUsage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
digitalSignature
public static final KeyUsage digitalSignature
-
contentCommitment
public static final KeyUsage contentCommitment
-
keyEncipherment
public static final KeyUsage keyEncipherment
-
dataEncipherment
public static final KeyUsage dataEncipherment
-
keyAgreement
public static final KeyUsage keyAgreement
-
keyCertSign
public static final KeyUsage keyCertSign
-
cRLSign
public static final KeyUsage cRLSign
-
encipherOnly
public static final KeyUsage encipherOnly
-
decipherOnly
public static final KeyUsage decipherOnly
-
-
Method Detail
-
values
public static KeyUsage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeyUsage c : KeyUsage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyUsage valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getBit
public int getBit()
-
getBcUsage
public int getBcUsage()
-
getName
public String getName()
-
getKeyUsage
public static KeyUsage getKeyUsage(int bit)
-
getKeyUsageFromBcUsage
public static KeyUsage getKeyUsageFromBcUsage(int bcUsage)
-
-