@InterfaceAudience.Public @InterfaceStability.Unstable public enum DigestType extends java.lang.Enum<DigestType>
| Enum Constant and Description |
|---|
CRC32
Entries are verified by applied CRC32 algorithm.
|
CRC32C
Entries are verified by applied CRC32C algorithm.
|
DUMMY
Entries are not verified.
|
MAC
Entries are verified by applied MAC algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static DigestType |
valueOf(java.lang.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 CRC32
public static final DigestType MAC
public static final DigestType CRC32C
public static final DigestType DUMMY
public static DigestType[] values()
for (DigestType c : DigestType.values()) System.out.println(c);
public static DigestType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2011–2024 The Apache Software Foundation. All rights reserved.