eu.emi.security.authn.x509.helpers
Enum CertificateHelpers.PEMContentsType

java.lang.Object
  extended by java.lang.Enum<CertificateHelpers.PEMContentsType>
      extended by eu.emi.security.authn.x509.helpers.CertificateHelpers.PEMContentsType
All Implemented Interfaces:
Serializable, Comparable<CertificateHelpers.PEMContentsType>
Enclosing class:
CertificateHelpers

public static enum CertificateHelpers.PEMContentsType
extends Enum<CertificateHelpers.PEMContentsType>


Enum Constant Summary
CERTIFICATE
           
CRL
           
CSR
           
LEGACY_OPENSSL_PRIVATE_KEY
           
PRIVATE_KEY
           
UNKNOWN
           
 
Method Summary
static CertificateHelpers.PEMContentsType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CertificateHelpers.PEMContentsType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PRIVATE_KEY

public static final CertificateHelpers.PEMContentsType PRIVATE_KEY

LEGACY_OPENSSL_PRIVATE_KEY

public static final CertificateHelpers.PEMContentsType LEGACY_OPENSSL_PRIVATE_KEY

CERTIFICATE

public static final CertificateHelpers.PEMContentsType CERTIFICATE

CSR

public static final CertificateHelpers.PEMContentsType CSR

CRL

public static final CertificateHelpers.PEMContentsType CRL

UNKNOWN

public static final CertificateHelpers.PEMContentsType UNKNOWN
Method Detail

values

public static CertificateHelpers.PEMContentsType[] 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 (CertificateHelpers.PEMContentsType c : CertificateHelpers.PEMContentsType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CertificateHelpers.PEMContentsType 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 name
NullPointerException - if the argument is null


Copyright © 2012-2013 European Middleware Initiative. All Rights Reserved.