public enum SamlEncryptionType extends Enum<SamlEncryptionType>
| Enum Constant and Description |
|---|
AES_128
Enumeration : AES_128
|
AES_256
Enumeration : AES_256
|
Triple_Des
Enumeration : Triple_Des
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SamlEncryptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamlEncryptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamlEncryptionType AES_128
public static final SamlEncryptionType AES_256
public static final SamlEncryptionType Triple_Des
public static SamlEncryptionType[] values()
for (SamlEncryptionType c : SamlEncryptionType.values()) System.out.println(c);
public static SamlEncryptionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<SamlEncryptionType>Copyright © 2017. All Rights Reserved.