mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
32 lines
741 B
Java
32 lines
741 B
Java
package com.google.common.hash;
|
|
|
|
import com.google.errorprone.annotations.Immutable;
|
|
import java.nio.ByteBuffer;
|
|
import java.nio.charset.Charset;
|
|
|
|
@Immutable
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public interface HashFunction {
|
|
int bits();
|
|
|
|
HashCode hashBytes(ByteBuffer byteBuffer);
|
|
|
|
HashCode hashBytes(byte[] bArr);
|
|
|
|
HashCode hashBytes(byte[] bArr, int i, int i2);
|
|
|
|
HashCode hashInt(int i);
|
|
|
|
HashCode hashLong(long j);
|
|
|
|
<T> HashCode hashObject(@ParametricNullness T t, Funnel<? super T> funnel);
|
|
|
|
HashCode hashString(CharSequence charSequence, Charset charset);
|
|
|
|
HashCode hashUnencodedChars(CharSequence charSequence);
|
|
|
|
Hasher newHasher();
|
|
|
|
Hasher newHasher(int i);
|
|
}
|