Class LEDataOutputStream

java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
com.jogamp.opengl.util.texture.spi.LEDataOutputStream
All Implemented Interfaces:
Closeable, DataOutput, Flushable, AutoCloseable

public class LEDataOutputStream extends FilterOutputStream implements DataOutput
Little Endian Data Output Stream. This class implements an output stream filter to allow writing of java native datatypes to an output stream which has those native datatypes stored in a little endian byte order.

This is the sister class of the DataOutputStream which allows for writing of java native datatypes to an output stream with the datatypes stored in big endian byte order.

This class implements the minimum required and calls DataOutputStream for some of the required methods for DataOutput.

Not all methods are implemented due to lack of immediate requirement for that functionality. It is not clear if it is ever going to be functionally required to be able to read UTF data in a LittleEndianManner