Package org.docx4j.org.apache.poi.util
Interface LittleEndianOutput
- All Known Subinterfaces:
DelayableLittleEndianOutput
- All Known Implementing Classes:
LittleEndianByteArrayOutputStream,LittleEndianOutputStream
public interface LittleEndianOutput
- Author:
- Josh Micich
-
Method Summary
Modifier and Type Method Description voidwrite(byte[] b)voidwrite(byte[] b, int offset, int len)voidwriteByte(int v)voidwriteDouble(double v)voidwriteInt(int v)voidwriteLong(long v)voidwriteShort(int v)
-
Method Details
-
writeByte
void writeByte(int v) -
writeShort
void writeShort(int v) -
writeInt
void writeInt(int v) -
writeLong
void writeLong(long v) -
writeDouble
void writeDouble(double v) -
write
void write(byte[] b) -
write
void write(byte[] b, int offset, int len)
-