Uses of Interface
org.docx4j.org.apache.poi.util.LittleEndianOutput
| Package | Description |
|---|---|
| org.docx4j.org.apache.poi.poifs.crypt |
Implementation of the ECMA-376 Document Encryption
|
| org.docx4j.org.apache.poi.util |
-
Uses of LittleEndianOutput in org.docx4j.org.apache.poi.poifs.crypt
Methods in org.docx4j.org.apache.poi.poifs.crypt with parameters of type LittleEndianOutput Modifier and Type Method Description static voidDataSpaceMapUtils. writeUnicodeLPP4(LittleEndianOutput os, java.lang.String string)static voidDataSpaceMapUtils. writeUtf8LPP4(LittleEndianOutput os, java.lang.String str) -
Uses of LittleEndianOutput in org.docx4j.org.apache.poi.util
Subinterfaces of LittleEndianOutput in org.docx4j.org.apache.poi.util Modifier and Type Interface Description interfaceDelayableLittleEndianOutputImplementors of this interface allow client code to 'delay' writing to a certain section of a data output stream.
A typical application is for writing BIFF records when the size is not known until well after the header has been written.Classes in org.docx4j.org.apache.poi.util that implement LittleEndianOutput Modifier and Type Class Description classLittleEndianByteArrayOutputStreamAdapts a plain byte array toLittleEndianOutputclassLittleEndianOutputStreamMethods in org.docx4j.org.apache.poi.util that return LittleEndianOutput Modifier and Type Method Description LittleEndianOutputDelayableLittleEndianOutput. createDelayedOutput(int size)Creates an output stream intended for outputting a sequence of size bytes.LittleEndianOutputLittleEndianByteArrayOutputStream. createDelayedOutput(int size)Methods in org.docx4j.org.apache.poi.util with parameters of type LittleEndianOutput Modifier and Type Method Description static voidStringUtil. putCompressedUnicode(java.lang.String input, LittleEndianOutput out)static voidStringUtil. putUnicodeLE(java.lang.String input, LittleEndianOutput out)static voidStringUtil. writeUnicodeString(LittleEndianOutput out, java.lang.String value)OutputStream out will get: ushort nChars byte is16BitFlag byte[]/char[] characterData For this encoding, the is16BitFlag is always present even if nChars==0.static voidStringUtil. writeUnicodeStringFlagAndData(LittleEndianOutput out, java.lang.String value)OutputStream out will get: byte is16BitFlag byte[]/char[] characterData For this encoding, the is16BitFlag is always present even if nChars==0.