Enum Saml2DigestAuthenticationModuleType
- java.lang.Object
-
- java.lang.Enum<Saml2DigestAuthenticationModuleType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.Saml2DigestAuthenticationModuleType
-
- All Implemented Interfaces:
Serializable
,Comparable<Saml2DigestAuthenticationModuleType>
public enum Saml2DigestAuthenticationModuleType extends Enum<Saml2DigestAuthenticationModuleType>
Java class for Saml2DigestAuthenticationModuleType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Saml2DigestAuthenticationModuleType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="http://www.w3.org/2000/09/xmldsig#sha1"/> <enumeration value="http://www.w3.org/2001/04/xmlenc#sha256"/> <enumeration value="http://www.w3.org/2001/04/xmlenc#sha512"/> <enumeration value="http://www.w3.org/2001/04/xmlenc#ripemd160"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Saml2DigestAuthenticationModuleType
fromValue(String v)
String
value()
static Saml2DigestAuthenticationModuleType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Saml2DigestAuthenticationModuleType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHA1
public static final Saml2DigestAuthenticationModuleType SHA1
-
SHA256
public static final Saml2DigestAuthenticationModuleType SHA256
-
SHA512
public static final Saml2DigestAuthenticationModuleType SHA512
-
RIPEMD160
public static final Saml2DigestAuthenticationModuleType RIPEMD160
-
-
Method Detail
-
values
public static Saml2DigestAuthenticationModuleType[] 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 (Saml2DigestAuthenticationModuleType c : Saml2DigestAuthenticationModuleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Saml2DigestAuthenticationModuleType 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
-
value
public String value()
-
fromValue
public static Saml2DigestAuthenticationModuleType fromValue(String v)
-
-