public enum MdAlgorithm extends Enum<MdAlgorithm> implements Algorithm
MdAlgorithm defines the MessageDigest Algorithm.| Enum Constant and Description |
|---|
MD2
The enum constant for MD2 algorithm.
|
MD4
The enum constant for MD4 algorithm.
|
MD5
The enum constant for MD5 algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static MdAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MdAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetAlgorithmpublic static final MdAlgorithm MD2
public static final MdAlgorithm MD4
public static final MdAlgorithm MD5
public static MdAlgorithm[] values()
for (MdAlgorithm c : MdAlgorithm.values()) System.out.println(c);
public static MdAlgorithm 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 © 2015–2017 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.