public enum ChecksumHashing extends Enum<ChecksumHashing>
| Modifier and Type | Method and Description |
|---|---|
static long |
hash8To16Bytes(long len,
long first8Bytes,
long last8Bytes)
A smart procedure copied from CityHash/FarmHash, see the full implementation in
Zero-allocation-hashing or Chronicle-Algorithms
|
static ChecksumHashing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksumHashing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static ChecksumHashing[] values()
for (ChecksumHashing c : ChecksumHashing.values()) System.out.println(c);
public static ChecksumHashing 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 long hash8To16Bytes(long len,
long first8Bytes,
long last8Bytes)
Copyright © 2024. All rights reserved.