public enum HashAlgorithm extends java.lang.Enum<HashAlgorithm>
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<java.lang.String,HashAlgorithm> |
BY_NAME |
private java.lang.String |
name |
Modifier and Type | Method and Description |
---|---|
protected static HashAlgorithm |
fromName(java.lang.String name)
Gives enum from name.
|
java.lang.String |
getName() |
static HashAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HashAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashAlgorithm SHA512
public static final HashAlgorithm MD5
private java.lang.String name
private static final java.util.Map<java.lang.String,HashAlgorithm> BY_NAME
public static HashAlgorithm[] values()
for (HashAlgorithm c : HashAlgorithm.values()) System.out.println(c);
public static HashAlgorithm 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 getName()
protected static HashAlgorithm fromName(java.lang.String name) throws java.lang.InternalError
name
- name of the hashInterlanError
java.lang.InternalError