public enum EncryptionSymAlgorithmConstants extends Enum<EncryptionSymAlgorithmConstants>
| Enum Constant and Description |
|---|
AES_128 |
AES_128_GCM |
AES_192 |
AES_192_GCM |
AES_256 |
AES_256_GCM |
TRIPLE_DES |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static EncryptionSymAlgorithmConstants |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionSymAlgorithmConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionSymAlgorithmConstants TRIPLE_DES
public static final EncryptionSymAlgorithmConstants AES_128
public static final EncryptionSymAlgorithmConstants AES_256
public static final EncryptionSymAlgorithmConstants AES_192
public static final EncryptionSymAlgorithmConstants AES_128_GCM
public static final EncryptionSymAlgorithmConstants AES_192_GCM
public static final EncryptionSymAlgorithmConstants AES_256_GCM
public static EncryptionSymAlgorithmConstants[] values()
for (EncryptionSymAlgorithmConstants c : EncryptionSymAlgorithmConstants.values()) System.out.println(c);
public static EncryptionSymAlgorithmConstants 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<EncryptionSymAlgorithmConstants>Copyright © 2021 MuleSoft, Inc.. All rights reserved.