public class ByteArrayInputStream extends InputStream
Modifier and Type | Field and Description |
---|---|
protected byte[] |
buf |
protected int |
count |
protected int |
mark |
protected int |
pos |
Constructor and Description |
---|
ByteArrayInputStream(byte[] var0) |
ByteArrayInputStream(byte[] var0,
int var1,
int var2) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
void |
mark(int var0) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] var0,
int var1,
int var2) |
void |
reset() |
long |
skip(long var0) |
read
protected byte[] buf
protected int pos
protected int mark
protected int count
public ByteArrayInputStream(byte[] var0)
public ByteArrayInputStream(byte[] var0, int var1, int var2)
public int available()
available
in class InputStream
public void close() throws IOException
close
in class InputStream
IOException
public void mark(int var0)
mark
in class InputStream
public boolean markSupported()
markSupported
in class InputStream
public int read()
read
in class InputStream
public int read(byte[] var0, int var1, int var2)
read
in class InputStream
public void reset()
reset
in class InputStream
public long skip(long var0)
skip
in class InputStream
Copyright © 2006–2013 OSGi Alliance. All rights reserved.