Uses of Class
edu.columbia.ee.flavor.FlIOException

Packages that use FlIOException
edu.columbia.ee.flavor   
 

Uses of FlIOException in edu.columbia.ee.flavor
 

Methods in edu.columbia.ee.flavor that throw FlIOException
 int IBitstream.getbits(int n)
          Gets next 'n' bits as unsigned value (input only)
 int IBitstream.sgetbits(int n)
          Gets next 'n' bits as signed value (input only)
 int IBitstream.nextbits(int n)
          Probes 'n' bits as unsigned value (input only)
 int IBitstream.snextbits(int n)
          Probes 'n' bits as signed value (input only)
 float IBitstream.getfloat()
          Gets next float value in next 32 bits (input only)
 float IBitstream.nextfloat()
          Probes next float value in next 32 bits (input only)
 double IBitstream.getdouble()
          Gets next double value in next 32 bits (output only)
 double IBitstream.nextdouble()
          Probes next double value in next 32 bits (input only)
 int IBitstream.putbits(int bits, int n)
          Puts 'n' bits (output only)
 float IBitstream.putfloat(float f)
          Puts float value into next 32 bits (input only)
 double IBitstream.putdouble(double d)
          Puts double value into next 32 bits (output only)
 int IBitstream.little_getbits(int n)
          Gets next 'n' bits as unsigned value using the little-endian method (input only)
 int IBitstream.little_sgetbits(int n)
          Gets next 'n' bits as signed value using the little-endian method (input only)
 int IBitstream.little_nextbits(int n)
          Probes 'n' bits as unsigned value using the little-endian method (input only)
 int IBitstream.little_snextbits(int n)
          Probes 'n' bits as signed value using the little-endian method (input only)
 float IBitstream.little_getfloat()
          Gets next float value in next 32 bits using the little-endian method (input only)
 float IBitstream.little_nextfloat()
          Probes next float value in next 32 bits using the little-endian method (input only)
 double IBitstream.little_getdouble()
          Gets next double value in next 32 bits using the little-endian method (output only)
 double IBitstream.little_nextdouble()
          Probes next double value in next 32 bits using the little-endian method (input only)
 int IBitstream.little_putbits(int bits, int n)
          Puts 'n' bits using the little-endian method (output only)
 float IBitstream.little_putfloat(float f)
          Puts float value into next 32 bits using the little-endian method (input only)
 double IBitstream.little_putdouble(double d)
          Puts double value into next 32 bits using the little-endian method (output only)
 void IBitstream.skipbits(int n)
          Skips next 'n' bits (both input/output)
 int IBitstream.align(int n)
          Aligns the bitstream to 8 bit boundary (n must be a multiple of 8, both input/output)
 void Bitstream.close()
          close file
 int Bitstream.getbits(int n)
          Get next n bits
 int Bitstream.sgetbits(int n)
          Get next n bits Java does not support unsigned type Remains only for compatibility with C++ language Blindly calls sgetbits
 int Bitstream.nextbits(int n)
          Peek next n bits
 int Bitstream.snextbits(int n)
          Peek next n bits - signed value
 float Bitstream.getfloat()
          Get float value(32 bits) from the bistream
 float Bitstream.nextfloat()
          Peak float value(32 bits) from the bistream
 double Bitstream.getdouble()
          Get double value(64 bits) from bistream
 double Bitstream.nextdouble()
          Get next double value from bistream
 int Bitstream.putbits(int y, int n)
          Put n bits
 float Bitstream.putfloat(float f)
          Put float value(32 bits) into bistream
 double Bitstream.putdouble(double d)
          Put a double value into bitstream
 int Bitstream.little_getbits(int n)
          Gets bits in little order.
 int Bitstream.little_sgetbits(int n)
           
 int Bitstream.little_nextbits(int n)
           
 int Bitstream.little_snextbits(int n)
           
 float Bitstream.little_getfloat()
           
 float Bitstream.little_nextfloat()
           
 double Bitstream.little_getdouble()
           
 double Bitstream.little_nextdouble()
           
 int Bitstream.little_putbits(int y, int n)
           
 float Bitstream.little_putfloat(float f)
           
 double Bitstream.little_putdouble(double d)
           
 void Bitstream.skipbits(int n)
          Skip n bits
 int Bitstream.align(int n)
          Align bitstream
 void Bitstream.flushbits()
          Flush all content in the buffer
 

Constructors in edu.columbia.ee.flavor that throw FlIOException
Bitstream(java.io.InputStream input)
          Constructs input bitstream.
Bitstream(java.io.OutputStream output)
          Constructs output bitstream.
Bitstream(java.io.InputStream input, int _buf_len)
          Constructs input bitstream with the given buffer length.
Bitstream(java.io.OutputStream output, int _buf_len)
          Constructs an output bitstream with the given buffer length.
Bitstream(java.lang.String filename, int _type)
          Constructs either an output or an input stream, depending on the type
Bitstream(java.lang.String filename, int _type, int _buf_len)
          Constructs either an output or an input stream, depending on the type, with the given buffer length.