org.apache.ws.security.saml.ext.bean
Enum KeyInfoBean.CERT_IDENTIFIER

java.lang.Object
  extended by java.lang.Enum<KeyInfoBean.CERT_IDENTIFIER>
      extended by org.apache.ws.security.saml.ext.bean.KeyInfoBean.CERT_IDENTIFIER
All Implemented Interfaces:
Serializable, Comparable<KeyInfoBean.CERT_IDENTIFIER>
Enclosing class:
KeyInfoBean

public static enum KeyInfoBean.CERT_IDENTIFIER
extends Enum<KeyInfoBean.CERT_IDENTIFIER>


Enum Constant Summary
KEY_VALUE
           
X509_CERT
           
X509_ISSUER_SERIAL
           
 
Method Summary
static KeyInfoBean.CERT_IDENTIFIER valueOf(String name)
          Returns the enum constant of this type with the specified name.
static KeyInfoBean.CERT_IDENTIFIER[] 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

X509_CERT

public static final KeyInfoBean.CERT_IDENTIFIER X509_CERT

X509_ISSUER_SERIAL

public static final KeyInfoBean.CERT_IDENTIFIER X509_ISSUER_SERIAL

KEY_VALUE

public static final KeyInfoBean.CERT_IDENTIFIER KEY_VALUE
Method Detail

values

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

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

valueOf

public static KeyInfoBean.CERT_IDENTIFIER 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 © 2004-2013 The Apache Software Foundation. All Rights Reserved.