java.io
Class FilterInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by java.io.FilterInputStream
Direct Known Subclasses:
BufferedInputStream, CheckedInputStream, DataInputStream, DigestInputStream, InflaterInputStream, PushbackInputStream

public class FilterInputStream
extends InputStream


Field Summary
protected  InputStream in
           
 
Constructor Summary
protected FilterInputStream(InputStream var0)
           
 
Method Summary
 int available()
           
 void close()
           
 void mark(int var0)
           
 boolean markSupported()
           
 int read()
           
 int read(byte[] var0)
           
 int read(byte[] var0, int var1, int var2)
           
 void reset()
           
 long skip(long var0)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

in

protected InputStream in
Constructor Detail

FilterInputStream

protected FilterInputStream(InputStream var0)
Method Detail

available

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

close

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

mark

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

markSupported

public boolean markSupported()
Overrides:
markSupported in class InputStream

read

public int read()
         throws IOException
Specified by:
read in class InputStream
Throws:
IOException

read

public int read(byte[] var0)
         throws IOException
Overrides:
read in class InputStream
Throws:
IOException

read

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

reset

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

skip

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


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