Java org.apache.commons.io.input NullInputStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.input NullInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.input NullInputStream.

The text is from its open source code.

Subclass

org.apache.commons.io.input.NullInputStream has subclasses.
Click this link to see all its subclasses.

Constructor

NullInputStream(long size, boolean markSupported, boolean throwEofException)
Create an InputStream that emulates a specified size with option settings.
NullInputStream(long size)
Create an InputStream that emulates a specified size which supports marking and does not throw EOFException.

Method

intavailable()
Return the number of bytes that can be read.
intread()
Read a byte.
intread(byte[] bytes, int offset, int length)
Read the specified number bytes into an array.
longskip(long numberOfBytes)
Skip a specified number of bytes.