public enum HashAlgorithmName extends Enum<HashAlgorithmName>
Java class for HashAlgorithmName.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="HashAlgorithmName">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="murmur32"/>
<enumeration value="murmur128"/>
<enumeration value="jenkins32"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
JENKINS_32 |
MURMUR_128 |
MURMUR_32 |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static HashAlgorithmName |
fromValue(String v) |
String |
value() |
static HashAlgorithmName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashAlgorithmName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashAlgorithmName NONE
public static final HashAlgorithmName MURMUR_32
public static final HashAlgorithmName MURMUR_128
public static final HashAlgorithmName JENKINS_32
public static HashAlgorithmName[] values()
for (HashAlgorithmName c : HashAlgorithmName.values()) System.out.println(c);
public static HashAlgorithmName 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 value()
public static HashAlgorithmName fromValue(String v)
Copyright © 2024. All Rights Reserved.