public enum DigestType extends Enum<DigestType>
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
toString() |
static DigestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DigestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DigestType SHA
public static final DigestType SHA256
public static final DigestType SHA384
public static final DigestType SHA512
public static DigestType[] values()
for (DigestType c : DigestType.values()) System.out.println(c);
public static DigestType 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 String toString()
toString in class Enum<DigestType>public String getName()
Copyright © 2007-2014 The Apache Software Foundation. All Rights Reserved.