| java.lang.Object java.util.zip.CRC32 sun.tools.javazic.Checksum
Checksum | public class Checksum extends CRC32 (Code) | | Checksum provides methods for calculating a CRC32 value for a
transitions table.
since: 1.4 |
Method Summary | |
public void | update(int val) Updates the CRC32 value from each byte of the given int
value. | void | update(long val) Updates the CRC32 value from each byte of the given long
value. |
update | public void update(int val)(Code) | | Updates the CRC32 value from each byte of the given int
value. The bytes are used in the big endian order.
Parameters: val - the int value |
update | void update(long val)(Code) | | Updates the CRC32 value from each byte of the given long
value. The bytes are used in the big endian order.
Parameters: val - the long value |
|
|