public enum PgpEncryptionAlgorithm extends Enum<PgpEncryptionAlgorithm>
| Enum Constant and Description |
|---|
AES_128 |
AES_192 |
AES_256 |
BLOWFISH |
CAMELLIA_128 |
CAMELLIA_192 |
CAMELLIA_256 |
CAST5 |
DES |
IDEA |
SAFER |
TRIPLE_DES |
TWOFISH |
| Modifier and Type | Method and Description |
|---|---|
int |
getNumericId() |
void |
setNumericId(int numericId) |
static PgpEncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PgpEncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PgpEncryptionAlgorithm IDEA
public static final PgpEncryptionAlgorithm TRIPLE_DES
public static final PgpEncryptionAlgorithm CAST5
public static final PgpEncryptionAlgorithm BLOWFISH
public static final PgpEncryptionAlgorithm SAFER
public static final PgpEncryptionAlgorithm DES
public static final PgpEncryptionAlgorithm AES_128
public static final PgpEncryptionAlgorithm AES_192
public static final PgpEncryptionAlgorithm AES_256
public static final PgpEncryptionAlgorithm TWOFISH
public static final PgpEncryptionAlgorithm CAMELLIA_128
public static final PgpEncryptionAlgorithm CAMELLIA_192
public static final PgpEncryptionAlgorithm CAMELLIA_256
public static PgpEncryptionAlgorithm[] values()
for (PgpEncryptionAlgorithm c : PgpEncryptionAlgorithm.values()) System.out.println(c);
public static PgpEncryptionAlgorithm 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 int getNumericId()
public void setNumericId(int numericId)
Copyright © 2025 MuleSoft, Inc.. All rights reserved.