net.sf.image4j.io
Class LittleEndianRandomAccessFile

java.lang.Object
  extended by java.io.RandomAccessFile
      extended by net.sf.image4j.io.LittleEndianRandomAccessFile
All Implemented Interfaces:
java.io.Closeable, java.io.DataInput, java.io.DataOutput

public class LittleEndianRandomAccessFile
extends java.io.RandomAccessFile

Provides endian conversions for input and output with a RandomAccessFile. This class is currently not in use and has not been tested.

Author:
Ian McDonagh

Constructor Summary
LittleEndianRandomAccessFile(java.io.File file, java.lang.String mode)
           
LittleEndianRandomAccessFile(java.lang.String name, java.lang.String mode)
           
 
Method Summary
 double readDoubleLE()
           
 float readFloatLE()
           
 int readIntLE()
           
 long readLongLE()
           
 short readShortLE()
           
 void writeDoubleLE(double value)
           
 void writeFloatLE(float value)
           
 void writeIntLE(int value)
           
 void writeLongLE(long value)
           
 void writeShortLE(short value)
           
 
Methods inherited from class java.io.RandomAccessFile
close, getChannel, getFD, getFilePointer, length, read, read, read, readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, seek, setLength, skipBytes, write, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LittleEndianRandomAccessFile

public LittleEndianRandomAccessFile(java.io.File file,
                                    java.lang.String mode)
                             throws java.io.FileNotFoundException
Throws:
java.io.FileNotFoundException

LittleEndianRandomAccessFile

public LittleEndianRandomAccessFile(java.lang.String name,
                                    java.lang.String mode)
                             throws java.io.FileNotFoundException
Throws:
java.io.FileNotFoundException
Method Detail

readShortLE

public short readShortLE()
                  throws java.io.IOException
Throws:
java.io.IOException

readIntLE

public int readIntLE()
              throws java.io.IOException
Throws:
java.io.IOException

readFloatLE

public float readFloatLE()
                  throws java.io.IOException
Throws:
java.io.IOException

readLongLE

public long readLongLE()
                throws java.io.IOException
Throws:
java.io.IOException

readDoubleLE

public double readDoubleLE()
                    throws java.io.IOException
Throws:
java.io.IOException

writeShortLE

public void writeShortLE(short value)
                  throws java.io.IOException
Throws:
java.io.IOException

writeIntLE

public void writeIntLE(int value)
                throws java.io.IOException
Throws:
java.io.IOException

writeFloatLE

public void writeFloatLE(float value)
                  throws java.io.IOException
Throws:
java.io.IOException

writeLongLE

public void writeLongLE(long value)
                 throws java.io.IOException
Throws:
java.io.IOException

writeDoubleLE

public void writeDoubleLE(double value)
                   throws java.io.IOException
Throws:
java.io.IOException