net.sf.image4j.io
Class LittleEndianOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FilterOutputStream
          extended by java.io.DataOutputStream
              extended by net.sf.image4j.io.LittleEndianOutputStream
All Implemented Interfaces:
java.io.Closeable, java.io.DataOutput, java.io.Flushable

public class LittleEndianOutputStream
extends java.io.DataOutputStream

Writes little-endian data to a target OutputStream by reversing byte ordering.

Author:
Ian McDonagh

Field Summary
 
Fields inherited from class java.io.DataOutputStream
written
 
Fields inherited from class java.io.FilterOutputStream
out
 
Constructor Summary
LittleEndianOutputStream(java.io.OutputStream out)
          Creates a new instance of LittleEndianOutputStream, which will write to the specified target.
 
Method Summary
 void writeDoubleLE(double value)
          Writes a little-endian double value
 void writeFloatLE(float value)
          Writes a little-endian float value
 void writeIntLE(int value)
          Writes a little-endian int value
 void writeLongLE(long value)
          Writes a little-endian long value
 void writeShortLE(short value)
          Writes a little-endian short value
 void writeUnsignedInt(long value)
           
 void writeUnsignedIntLE(long value)
           
 
Methods inherited from class java.io.DataOutputStream
flush, size, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
 
Methods inherited from class java.io.FilterOutputStream
close, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.io.DataOutput
write
 

Constructor Detail

LittleEndianOutputStream

public LittleEndianOutputStream(java.io.OutputStream out)
Creates a new instance of LittleEndianOutputStream, which will write to the specified target.

Parameters:
out - the target OutputStream
Method Detail

writeShortLE

public void writeShortLE(short value)
                  throws java.io.IOException
Writes a little-endian short value

Parameters:
value - the source value to convert
Throws:
java.io.IOException - if an error occurs

writeIntLE

public void writeIntLE(int value)
                throws java.io.IOException
Writes a little-endian int value

Parameters:
value - the source value to convert
Throws:
java.io.IOException - if an error occurs

writeFloatLE

public void writeFloatLE(float value)
                  throws java.io.IOException
Writes a little-endian float value

Parameters:
value - the source value to convert
Throws:
java.io.IOException - if an error occurs

writeLongLE

public void writeLongLE(long value)
                 throws java.io.IOException
Writes a little-endian long value

Parameters:
value - the source value to convert
Throws:
java.io.IOException - if an error occurs

writeDoubleLE

public void writeDoubleLE(double value)
                   throws java.io.IOException
Writes a little-endian double value

Parameters:
value - the source value to convert
Throws:
java.io.IOException - if an error occurs

writeUnsignedInt

public void writeUnsignedInt(long value)
                      throws java.io.IOException
Throws:
java.io.IOException
Since:
0.6

writeUnsignedIntLE

public void writeUnsignedIntLE(long value)
                        throws java.io.IOException
Throws:
java.io.IOException
Since:
0.6