Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class CRC32 extends Object implements Checksum { // Default Constructor: public CRC32() // Public Instance Methods public long getValue(); public void reset(); public void update(int b); public native void update(byte[] b, int off, int len); public void update(byte[] b); }