public enum XmlEncryptionAlgorithm extends Enum<XmlEncryptionAlgorithm>
| Modifier and Type | Method and Description |
|---|---|
static XmlEncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlEncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlEncryptionAlgorithm AES_CBC
public static final XmlEncryptionAlgorithm AES_GCM
public static final XmlEncryptionAlgorithm TRIPLEDES
public static XmlEncryptionAlgorithm[] values()
for (XmlEncryptionAlgorithm c : XmlEncryptionAlgorithm.values()) System.out.println(c);
public static XmlEncryptionAlgorithm 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 nullCopyright © 2025 MuleSoft, Inc.. All rights reserved.