Example usage for Java java.util.zip Checksum fields, constructors, methods, implement or subclass
The text is from its open source code.
long | getValue() Returns the current checksum value. |
void | reset() Resets the checksum to its initial value. |
void | update(byte[] b, int off, int len) Updates the current checksum with the specified array of bytes. |
void | update(int b) Updates the current checksum with the specified byte. |
void | update(byte[] b) Updates the current checksum with the specified array of bytes. |
void | update(ByteBuffer buffer) Updates the current checksum with the bytes from the specified buffer. |