Package org.wildfly.security.x500.cert
Enum KeyUsage
- java.lang.Object
-
- java.lang.Enum<KeyUsage>
-
- org.wildfly.security.x500.cert.KeyUsage
-
- All Implemented Interfaces:
Serializable
,Comparable<KeyUsage>
public enum KeyUsage extends Enum<KeyUsage>
The various key usage types.- Author:
- David M. Lloyd
-
-
Enum Constant Summary
Enum Constants Enum Constant Description cRLSign
dataEncipherment
decipherOnly
digitalSignature
encipherOnly
keyAgreement
keyCertSign
keyEncipherment
nonRepudiation
-
Field Summary
Fields Modifier and Type Field Description (package private) static int
fullSize
-
Constructor Summary
Constructors Modifier Constructor Description private
KeyUsage()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) static KeyUsage
forName(String name)
boolean
in(boolean[] booleans)
Determine whether the bit # corresponding to this enumeration is set in the given boolean array.boolean
in(KeyUsage v1)
Determine whether this instance is equal to one of the given instances.boolean
in(KeyUsage... values)
Determine whether this instance is equal to one of the given instances.boolean
in(KeyUsage v1, KeyUsage v2)
Determine whether this instance is equal to one of the given instances.boolean
in(KeyUsage v1, KeyUsage v2, KeyUsage v3)
Determine whether this instance is equal to one of the given instances.static boolean
isFull(EnumSet<KeyUsage> set)
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.static KeyUsage
valueOf(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
-
nonRepudiation
public static final KeyUsage nonRepudiation
-
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
-
isFull
public static boolean isFull(EnumSet<KeyUsage> set)
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set
- the set- Returns:
true
if the set is full,false
otherwise
-
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:
true
if there is atrue
boolean
at the index corresponding to the ordinal of this constant
-
in
public boolean in(KeyUsage v1)
Determine whether this instance is equal to one of the given instances.- Parameters:
v1
- the first instance- Returns:
true
if one of the instances matches this one,false
otherwise
-
in
public boolean in(KeyUsage v1, KeyUsage v2)
Determine whether this instance is equal to one of the given instances.- Parameters:
v1
- the first instancev2
- the second instance- Returns:
true
if one of the instances matches this one,false
otherwise
-
in
public boolean in(KeyUsage v1, KeyUsage v2, KeyUsage v3)
Determine whether this instance is equal to one of the given instances.- Parameters:
v1
- the first instancev2
- the second instancev3
- the third instance- Returns:
true
if one of the instances matches this one,false
otherwise
-
in
public boolean in(KeyUsage... values)
Determine whether this instance is equal to one of the given instances.- Parameters:
values
- the possible values- Returns:
true
if one of the instances matches this one,false
otherwise
-
-