public enum DigestAlgo extends Enum<DigestAlgo>
Modifier and Type | Method and Description |
---|---|
String |
getAlgoId() |
String |
getXmlAlgoId() |
String |
toString() |
static DigestAlgo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DigestAlgo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DigestAlgo SHA1
public static final DigestAlgo SHA256
public static final DigestAlgo SHA512
public static DigestAlgo[] values()
for (DigestAlgo c : DigestAlgo.values()) System.out.println(c);
public static DigestAlgo 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<DigestAlgo>
public String getAlgoId()
public String getXmlAlgoId()
Copyright © 2008-2015 FedICT. All Rights Reserved.