public static enum UnaryEncryptionFunction.EncryptionAlgorithm extends Enum<UnaryEncryptionFunction.EncryptionAlgorithm>
| Enum Constant and Description |
|---|
FROM_BASE64 |
SHA256 |
TO_BASE64 |
| Modifier and Type | Method and Description |
|---|---|
static UnaryEncryptionFunction.EncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnaryEncryptionFunction.EncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryEncryptionFunction.EncryptionAlgorithm SHA256
public static final UnaryEncryptionFunction.EncryptionAlgorithm TO_BASE64
public static final UnaryEncryptionFunction.EncryptionAlgorithm FROM_BASE64
public static UnaryEncryptionFunction.EncryptionAlgorithm[] values()
for (UnaryEncryptionFunction.EncryptionAlgorithm c : UnaryEncryptionFunction.EncryptionAlgorithm.values()) System.out.println(c);
public static UnaryEncryptionFunction.EncryptionAlgorithm 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 © 2023. All rights reserved.