class MemoryBlob.InputStreamImpl
extends java.io.InputStream
| Modifier and Type | Field and Description |
|---|---|
private byte[] |
currBuffer |
private int |
currIndex |
private int |
i |
private int |
mark |
private byte[] |
read_byte |
private int |
totalIndex |
| Constructor and Description |
|---|
InputStreamImpl() |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
private int i
private int currIndex
private int totalIndex
private int mark
private byte[] currBuffer
private byte[] read_byte
public int read()
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic int available()
throws java.io.IOException
available in class java.io.InputStreamjava.io.IOExceptionpublic void mark(int readlimit)
mark in class java.io.InputStreampublic boolean markSupported()
markSupported in class java.io.InputStreampublic int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic int read(byte[] b)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic void reset()
throws java.io.IOException
reset in class java.io.InputStreamjava.io.IOException