public enum ChecksumAlgorithm extends Enum<ChecksumAlgorithm>
| Enum Constant and Description |
|---|
CRC32 |
MD2 |
MD5 |
SHA_1 |
SHA_256 |
SHA_512 |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isWeak() |
String |
toString() |
static ChecksumAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksumAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChecksumAlgorithm CRC32
public static final ChecksumAlgorithm MD2
public static final ChecksumAlgorithm MD5
public static final ChecksumAlgorithm SHA_1
public static final ChecksumAlgorithm SHA_256
public static final ChecksumAlgorithm SHA_512
public static ChecksumAlgorithm[] values()
for (ChecksumAlgorithm c : ChecksumAlgorithm.values()) System.out.println(c);
public static ChecksumAlgorithm 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 boolean isWeak()
public String toString()
toString in class Enum<ChecksumAlgorithm>Copyright © 2025 MuleSoft, Inc.. All rights reserved.