Uses of Class
org.wildfly.security.x500.cert.KeyUsage
-
Packages that use KeyUsage Package Description org.wildfly.security.x500.cert Package containing APIs for generating certificates and certificate signing requests. -
-
Uses of KeyUsage in org.wildfly.security.x500.cert
Fields in org.wildfly.security.x500.cert with type parameters of type KeyUsage Modifier and Type Field Description private EnumSet<KeyUsage>
KeyUsageExtension. keyUsage
Methods in org.wildfly.security.x500.cert that return KeyUsage Modifier and Type Method Description (package private) static KeyUsage
KeyUsage. forName(String name)
static KeyUsage
KeyUsage. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyUsage[]
KeyUsage. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.wildfly.security.x500.cert with parameters of type KeyUsage Modifier and Type Method Description boolean
KeyUsage. in(KeyUsage v1)
Determine whether this instance is equal to one of the given instances.boolean
KeyUsage. in(KeyUsage... values)
Determine whether this instance is equal to one of the given instances.boolean
KeyUsage. in(KeyUsage v1, KeyUsage v2)
Determine whether this instance is equal to one of the given instances.boolean
KeyUsage. in(KeyUsage v1, KeyUsage v2, KeyUsage v3)
Determine whether this instance is equal to one of the given instances.Method parameters in org.wildfly.security.x500.cert with type arguments of type KeyUsage Modifier and Type Method Description static boolean
KeyUsage. isFull(EnumSet<KeyUsage> set)
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.Constructors in org.wildfly.security.x500.cert with parameters of type KeyUsage Constructor Description KeyUsageExtension(boolean critical, KeyUsage... keyUsage)
Construct a new instance.KeyUsageExtension(KeyUsage... keyUsage)
Construct a new instance.
-