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