public static enum DnssecConstants.DigestAlgorithm extends Enum<DnssecConstants.DigestAlgorithm>
Modifier and Type | Field and Description |
---|---|
String |
description |
byte |
value |
Modifier and Type | Method and Description |
---|---|
static DnssecConstants.DigestAlgorithm |
forByte(byte b) |
static DnssecConstants.DigestAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DnssecConstants.DigestAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DnssecConstants.DigestAlgorithm SHA1
public static final DnssecConstants.DigestAlgorithm SHA256
public static final DnssecConstants.DigestAlgorithm GOST
public static final DnssecConstants.DigestAlgorithm SHA384
public final byte value
public final String description
public static DnssecConstants.DigestAlgorithm[] values()
for (DnssecConstants.DigestAlgorithm c : DnssecConstants.DigestAlgorithm.values()) System.out.println(c);
public static DnssecConstants.DigestAlgorithm 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 static DnssecConstants.DigestAlgorithm forByte(byte b)