Package org.eclipse.rdf4j.rio.hdt
Class CRC16
- java.lang.Object
-
- org.eclipse.rdf4j.rio.hdt.CRC16
-
- All Implemented Interfaces:
java.util.zip.Checksum
class CRC16 extends java.lang.Object implements java.util.zip.Checksum
CRC16-ANSI checksum
-
-
Constructor Summary
Constructors Constructor Description CRC16()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getValue()
void
reset()
void
update(byte[] b, int off, int len)
void
update(int b)
-
-
-
Method Detail
-
update
public void update(int b)
- Specified by:
update
in interfacejava.util.zip.Checksum
-
update
public void update(byte[] b, int off, int len)
- Specified by:
update
in interfacejava.util.zip.Checksum
-
getValue
public long getValue()
- Specified by:
getValue
in interfacejava.util.zip.Checksum
-
reset
public void reset()
- Specified by:
reset
in interfacejava.util.zip.Checksum
-
-