Package | Description |
---|---|
manifold.api.util.fingerprint |
Modifier and Type | Method and Description |
---|---|
Fingerprint |
Fingerprint.extend(byte b)
Extends this fingerprint by the byte
b . |
Fingerprint |
Fingerprint.extend(byte[] bytes)
Extends this fingerprint by the bytes
|
Fingerprint |
Fingerprint.extend(byte[] bytes,
int start,
int len)
Extends this fingerprint by the bytes
bytes[offset]..bytes[offset+length-1] . |
Fingerprint |
Fingerprint.extend(ByteBuffer buffer) |
Fingerprint |
Fingerprint.extend(char c)
Extends this fingerprint by the character
c . |
Fingerprint |
Fingerprint.extend(char[] chars)
Extends this fingerprint by the characters
chars[start]..chars[start+length-1] . |
Fingerprint |
Fingerprint.extend(char[] chars,
int start,
int len)
Extends this fingerprint by the characters
chars[start]..chars[start+length-1] . |
Fingerprint |
Fingerprint.extend(InputStream stream)
Extends this fingerprint by the bytes of the stream
stream , which must be non-null. |
Fingerprint |
Fingerprint.extend(int i)
Extends this fingerprint by the integer
i . |
Fingerprint |
Fingerprint.extend(long i)
Extends this fingerprint by the integer
i . |
Fingerprint |
Fingerprint.extend(String s)
Extends this fingerprint by the characters of the String
s , which must be non-null. |
Constructor and Description |
---|
Fingerprint(Fingerprint fp)
Initializes this fingerprint to a copy of
fp ,
which must be non-null. |
Copyright © 2024. All rights reserved.