Uses of Class
org.apache.commons.io.input.ChecksumInputStream.Builder
-
Packages that use ChecksumInputStream.Builder Package Description org.apache.commons.io.input Provides implementations of input classes, such asInputStream
andReader
. -
-
Uses of ChecksumInputStream.Builder in org.apache.commons.io.input
Methods in org.apache.commons.io.input that return ChecksumInputStream.Builder Modifier and Type Method Description static ChecksumInputStream.Builder
ChecksumInputStream. builder()
Constructs a newChecksumInputStream.Builder
.ChecksumInputStream.Builder
ChecksumInputStream.Builder. setChecksum(java.util.zip.Checksum checksum)
Sets the Checksum.ChecksumInputStream.Builder
ChecksumInputStream.Builder. setCountThreshold(long countThreshold)
Sets the count threshold to limit how much input is consumed to update theChecksum
before the input stream validates its value.ChecksumInputStream.Builder
ChecksumInputStream.Builder. setExpectedChecksumValue(long expectedChecksumValue)
The expectedChecksum
value once the stream is exhausted or the count threshold is reached.
-