public enum ExtKeyUsage extends java.lang.Enum<ExtKeyUsage>
Enum Constant and Description |
---|
Any |
ClientAuth |
CodeSigning |
EmailProtection |
OCSPSigning |
ServerAuth |
TimeStamping |
Modifier and Type | Method and Description |
---|---|
static ExtKeyUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtKeyUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtKeyUsage Any
public static final ExtKeyUsage ServerAuth
public static final ExtKeyUsage ClientAuth
public static final ExtKeyUsage CodeSigning
public static final ExtKeyUsage EmailProtection
public static final ExtKeyUsage TimeStamping
public static final ExtKeyUsage OCSPSigning
public static ExtKeyUsage[] values()
for (ExtKeyUsage c : ExtKeyUsage.values()) System.out.println(c);
public static ExtKeyUsage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null