util
Class CrystalInputStream

java.lang.Object
  |
  +--java.io.InputStream
        |
        +--java.io.FilterInputStream
              |
              +--util.CrystalInputStream

public class CrystalInputStream
extends FilterInputStream

A stream for 'decrystalizing' data from a crystalized form. database.

See Also:
CrystalInputStream

Fields inherited from class java.io.FilterInputStream
in
 
Constructor Summary
CrystalInputStream(InputStream in)
           
 
Method Summary
 int available()
           
 boolean markSupported()
           
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 long skip(long n)
           
 
Methods inherited from class java.io.FilterInputStream
close, mark, reset
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CrystalInputStream

public CrystalInputStream(InputStream in)
Method Detail

available

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

read

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

read

public int read(byte[] b)
         throws IOException
Overrides:
read in class FilterInputStream

read

public int read(byte[] b,
                int off,
                int len)
         throws IOException
Overrides:
read in class FilterInputStream

skip

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

markSupported

public boolean markSupported()
Overrides:
markSupported in class FilterInputStream