Package se.idsec.utils.printcert.enums
Enum SupportedExtension
- java.lang.Object
-
- java.lang.Enum<SupportedExtension>
-
- se.idsec.utils.printcert.enums.SupportedExtension
-
- All Implemented Interfaces:
Serializable,Comparable<SupportedExtension>
public enum SupportedExtension extends Enum<SupportedExtension>
- Author:
- stefan
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SupportedExtensiongetExtension(String oid)static SupportedExtensiongetExtension(ASN1ObjectIdentifier oid)StringgetName()ASN1ObjectIdentifiergetOid()static SupportedExtensionvalueOf(String name)Returns the enum constant of this type with the specified name.static SupportedExtension[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
basicConstraints
public static final SupportedExtension basicConstraints
-
authorityInfoAccess
public static final SupportedExtension authorityInfoAccess
-
authorityKeyIdentifier
public static final SupportedExtension authorityKeyIdentifier
-
biometricInfo
public static final SupportedExtension biometricInfo
-
cRLDistributionPoints
public static final SupportedExtension cRLDistributionPoints
-
certificateIssuer
public static final SupportedExtension certificateIssuer
-
certificatePolicies
public static final SupportedExtension certificatePolicies
-
extendedKeyUsage
public static final SupportedExtension extendedKeyUsage
-
inhibitAnyPolicy
public static final SupportedExtension inhibitAnyPolicy
-
issuerAlternativeName
public static final SupportedExtension issuerAlternativeName
-
keyUsage
public static final SupportedExtension keyUsage
-
logoType
public static final SupportedExtension logoType
-
nameConstraints
public static final SupportedExtension nameConstraints
-
policyConstraints
public static final SupportedExtension policyConstraints
-
policyMappings
public static final SupportedExtension policyMappings
-
privateKeyUsagePeriod
public static final SupportedExtension privateKeyUsagePeriod
-
qCStatements
public static final SupportedExtension qCStatements
-
subjectAlternativeName
public static final SupportedExtension subjectAlternativeName
-
subjectDirectoryAttributes
public static final SupportedExtension subjectDirectoryAttributes
-
subjectInfoAccess
public static final SupportedExtension subjectInfoAccess
-
subjectKeyIdentifier
public static final SupportedExtension subjectKeyIdentifier
-
ocspNocheck
public static final SupportedExtension ocspNocheck
-
authContext
public static final SupportedExtension authContext
-
signedCertificateTimestampList
public static final SupportedExtension signedCertificateTimestampList
-
netscapeCertType
public static final SupportedExtension netscapeCertType
-
unknown
public static final SupportedExtension unknown
-
-
Method Detail
-
values
public static SupportedExtension[] 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 (SupportedExtension c : SupportedExtension.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupportedExtension 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
-
getName
public String getName()
-
getOid
public ASN1ObjectIdentifier getOid()
-
getExtension
public static SupportedExtension getExtension(ASN1ObjectIdentifier oid)
-
getExtension
public static SupportedExtension getExtension(String oid)
-
-