Checksum
public class Adler32 extends Object implements Checksum
Passing a null
argument to a method in this class will cause a NullPointerException
to be thrown.
Constructor | Description |
---|---|
Adler32() |
Creates a new Adler32 object. |
Modifier and Type | Method | Description |
---|---|---|
long |
getValue() |
Returns the checksum value. |
void |
reset() |
Resets the checksum to initial value. |
void |
update |
Updates the checksum with the specified array of bytes. |
void |
update |
Updates the checksum with the specified byte (the low eight bits of the argument b). |
void |
update |
Updates the checksum with the bytes from the specified buffer. |
public Adler32()
public void update(int b)
public void update(byte[] b, int off, int len)
update
in interface Checksum
b
- the byte array to update the checksum withoff
- the start offset of the datalen
- the number of bytes to use for the updateArrayIndexOutOfBoundsException
- if off
is negative, or len
is negative, or off+len
is negative or greater than the length of the array b
.public void update(ByteBuffer buffer)
public void reset()
public long getValue()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/zip/Adler32.html