Java java.util.zip Checksum fields, constructors, methods, implement or subclass

Example usage for Java java.util.zip Checksum fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.zip Checksum.

The text is from its open source code.

Implementation

java.util.zip.Checksum has the following implementations.
Click this link to see all its implementation.

Method

longgetValue()
Returns the current checksum value.
voidreset()
Resets the checksum to its initial value.
voidupdate(byte[] b, int off, int len)
Updates the current checksum with the specified array of bytes.
voidupdate(int b)
Updates the current checksum with the specified byte.
voidupdate(byte[] b)
Updates the current checksum with the specified array of bytes.
voidupdate(ByteBuffer buffer)
Updates the current checksum with the bytes from the specified buffer.