Package org.wildfly.security.x500.cert
Enum Class KeyUsage
- All Implemented Interfaces:
Serializable,Comparable<KeyUsage>,Constable
The various key usage types.
- Author:
- David M. Lloyd
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionbooleanin(boolean[] booleans) Determine whether the bit # corresponding to this enumeration is set in the given boolean array.booleanDetermine whether this instance is equal to one of the given instances.booleanDetermine whether this instance is equal to one of the given instances.booleanDetermine whether this instance is equal to one of the given instances.booleanDetermine whether this instance is equal to one of the given instances.static booleanDetermine whether the given set is fully populated (or "full"), meaning it contains all possible values.static KeyUsageReturns the enum constant of this class with the specified name.static KeyUsage[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
digitalSignature
-
nonRepudiation
-
keyEncipherment
-
dataEncipherment
-
keyAgreement
-
keyCertSign
-
cRLSign
-
encipherOnly
-
decipherOnly
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
isFull
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set- the set- Returns:
trueif the set is full,falseotherwise
-
in
public boolean in(boolean[] booleans) Determine whether the bit # corresponding to this enumeration is set in the given boolean array.- Parameters:
booleans- the boolean array (must not benull)- Returns:
trueif there is atruebooleanat the index corresponding to the ordinal of this constant
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instancev3- the third instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
values- the possible values- Returns:
trueif one of the instances matches this one,falseotherwise
-