Package org.greenrobot.essentials.hash
Interface Checksum128
- All Superinterfaces:
Checksum
- All Known Implementing Classes:
Murmur3F
Checksum interface to access 128 bit in various ways.
-
Method Summary
Modifier and TypeMethodDescriptionPositive value.byte[]
Big endian is the default in Java / network byte order.byte[]
Big endian is used by most machines natively.Padded with leading 0s to ensure length of 32.long
Returns the higher 64 bits of the 128 bit hash.
-
Method Details
-
getValueHigh
long getValueHigh()Returns the higher 64 bits of the 128 bit hash. -
getValueBigInteger
BigInteger getValueBigInteger()Positive value. -
getValueHexString
String getValueHexString()Padded with leading 0s to ensure length of 32. -
getValueBytesBigEndian
byte[] getValueBytesBigEndian()Big endian is the default in Java / network byte order. -
getValueBytesLittleEndian
byte[] getValueBytesLittleEndian()Big endian is used by most machines natively.
-