Class LEDataOutputStream
java.lang.Object
java.io.OutputStream
org.eclipse.swt.internal.image.LEDataOutputStream
- All Implemented Interfaces:
Closeable, Flushable, AutoCloseable
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidwrite(byte[] b, int off, int len) Write the specified number of bytes of the given byte array, starting at the specified offset, to the output stream.voidwrite(int b) Write the given byte to the output stream.voidwriteByte(byte b) Write the given byte to the output stream.voidwriteInt(int theInt) Write the four bytes of the given integer to the output stream.voidwriteShort(int theShort) Write the two bytes of the given short to the output stream.Methods inherited from class OutputStream
close, flush, nullOutputStream, write
-
Field Details
-
out
OutputStream out
-
-
Constructor Details
-
LEDataOutputStream
-
-
Method Details
-
write
Write the specified number of bytes of the given byte array, starting at the specified offset, to the output stream.- Overrides:
writein classOutputStream- Throws:
IOException
-
write
Write the given byte to the output stream.- Specified by:
writein classOutputStream- Throws:
IOException
-
writeByte
Write the given byte to the output stream.- Throws:
IOException
-
writeInt
Write the four bytes of the given integer to the output stream.- Throws:
IOException
-
writeShort
Write the two bytes of the given short to the output stream.- Throws:
IOException
-