| java.lang.Object java.io.InputStream org.apache.derbyTesting.functionTests.util.TestInputStream
TestInputStream | final public class TestInputStream extends InputStream (Code) | | TestInputStream class is a InputStream which returns
a lot of data which can be inserted into a LOB.
|
Method Summary | |
public int | read() Implementation of InputStream.read(). |
length | final long length(Code) | | Length of stream
|
value | final int value(Code) | | Value to return
|
TestInputStream | public TestInputStream(long length, int value)(Code) | | Constructor for TestInputStream
Parameters: length - length of stream Parameters: value - value to return |
read | public int read() throws IOException(Code) | | Implementation of InputStream.read(). Returns
the value specified in constructor, unless the
end of the stream has been reached.
|
|
|