public enum DigestType extends Enum<DigestType>
| Modifier and Type | Method and Description |
|---|---|
static DigestType |
fromValue(short value) |
String |
getName() |
byte |
getValue() |
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 RESERVED
public static final DigestType SHA1
public static final DigestType SHA256
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 byte getValue()
public static DigestType fromValue(short value)
public String getName()
Copyright © 2020. All rights reserved.