public enum EncryptionMode extends Enum<EncryptionMode>
The modes for encryption
| Modifier and Type | Method and Description |
|---|---|
static EncryptionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionMode CBC
public static final EncryptionMode CFB
public static final EncryptionMode ECB
public static final EncryptionMode OFB
public static EncryptionMode[] values()
for (EncryptionMode c : EncryptionMode.values()) System.out.println(c);
public static EncryptionMode 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 © 2024 MuleSoft, Inc.. All rights reserved.