public enum StandardSupportedAlgorithms extends java.lang.Enum<StandardSupportedAlgorithms> implements SupportedAlgorithm
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBagitName() |
java.lang.String |
getMessageDigestName() |
static StandardSupportedAlgorithms |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardSupportedAlgorithms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardSupportedAlgorithms MD5
public static final StandardSupportedAlgorithms SHA1
public static final StandardSupportedAlgorithms SHA224
public static final StandardSupportedAlgorithms SHA256
public static final StandardSupportedAlgorithms SHA512
public static StandardSupportedAlgorithms[] values()
for (StandardSupportedAlgorithms c : StandardSupportedAlgorithms.values()) System.out.println(c);
public static StandardSupportedAlgorithms valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getMessageDigestName()
getMessageDigestName in interface SupportedAlgorithmpublic java.lang.String getBagitName()
getBagitName in interface SupportedAlgorithm