java.io
Class BufferedInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by java.io.FilterInputStream
          extended by java.io.BufferedInputStream

public class BufferedInputStream
extends FilterInputStream


Field Summary
protected  byte[] buf
           
protected  int count
           
protected  int marklimit
           
protected  int markpos
           
protected  int pos
           
 
Fields inherited from class java.io.FilterInputStream
in
 
Constructor Summary
BufferedInputStream(InputStream var0)
           
BufferedInputStream(InputStream var0, int var1)
           
 
Method Summary
 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)
           
 
Methods inherited from class java.io.FilterInputStream
read
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

buf

protected byte[] buf

count

protected int count

marklimit

protected int marklimit

markpos

protected int markpos

pos

protected int pos
Constructor Detail

BufferedInputStream

public BufferedInputStream(InputStream var0)

BufferedInputStream

public BufferedInputStream(InputStream var0,
                           int var1)
Method Detail

available

public int available()
              throws IOException
Overrides:
available in class FilterInputStream
Throws:
IOException

close

public void close()
           throws IOException
Overrides:
close in class FilterInputStream
Throws:
IOException

mark

public void mark(int var0)
Overrides:
mark in class FilterInputStream

markSupported

public boolean markSupported()
Overrides:
markSupported in class FilterInputStream

read

public int read()
         throws IOException
Overrides:
read in class FilterInputStream
Throws:
IOException

read

public int read(byte[] var0,
                int var1,
                int var2)
         throws IOException
Overrides:
read in class FilterInputStream
Throws:
IOException

reset

public void reset()
           throws IOException
Overrides:
reset in class FilterInputStream
Throws:
IOException

skip

public long skip(long var0)
          throws IOException
Overrides:
skip in class FilterInputStream
Throws:
IOException


Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.