Class ByteUtils.InputStreamByteSupplier
- java.lang.Object
-
- org.apache.commons.compress.utils.ByteUtils.InputStreamByteSupplier
-
- All Implemented Interfaces:
ByteUtils.ByteSupplier
- Enclosing class:
- ByteUtils
public static class ByteUtils.InputStreamByteSupplier extends Object implements ByteUtils.ByteSupplier
ByteUtils.ByteSupplierbased onInputStream.- Since:
- 1.14
-
-
Constructor Summary
Constructors Constructor Description InputStreamByteSupplier(InputStream is)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAsByte()The contract is similar toInputStream.read(), return the byte as an unsigned int, -1 if there are no more bytes.
-
-
-
Constructor Detail
-
InputStreamByteSupplier
public InputStreamByteSupplier(InputStream is)
-
-
Method Detail
-
getAsByte
public int getAsByte() throws IOExceptionDescription copied from interface:ByteUtils.ByteSupplierThe contract is similar toInputStream.read(), return the byte as an unsigned int, -1 if there are no more bytes.- Specified by:
getAsBytein interfaceByteUtils.ByteSupplier- Returns:
- the supplied byte or -1 if there are no more bytes
- Throws:
IOException- if supplying fails
-
-