public enum HashFunction extends Enum<HashFunction>
| Enum Constant and Description |
|---|
NONE
No hashing will be performed.
|
XXHASH64
xxHash64 hashing algorithm will be used to generate the hash.
|
| Modifier and Type | Method and Description |
|---|---|
static HashFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashFunction NONE
public static final HashFunction XXHASH64
public static HashFunction[] values()
for (HashFunction c : HashFunction.values()) System.out.println(c);
public static HashFunction 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 nullCopyright © 2017–2023 EntIT Software LLC, a Micro Focus company. All rights reserved.