Uses of Class
technology.tabula.TextChunk
Packages that use TextChunk
-
Uses of TextChunk in technology.tabula
Fields in technology.tabula declared as TextChunkMethods in technology.tabula that return TextChunkModifier and TypeMethodDescriptionTextChunk.groupByDirectionality(Boolean isLtrDominant) Splits a TextChunk into N TextChunks, where each chunk is of a single directionality, and then reverse the RTL ones.TextChunk.splitAt(int i) Splits a TextChunk in two, at the position of the i-th TextElementMethods in technology.tabula that return types with arguments of type TextChunkModifier and TypeMethodDescriptionLine.getTextElements()TextElement.mergeWords(List<TextElement> textElements) TextElement.mergeWords(List<TextElement> textElements, List<Ruling> verticalRulings) heuristically merge a list of TextElement into a list of TextChunk ported from from PDFBox's PDFTextStripper.writePage, with modifications.Removes runs of identical TextElements in this TextChunk For example, if the TextChunk contains this string of characters: "1234xxxxx56xx" and c == 'x' and minRunLength == 4, this method will return a list of TextChunk such that: ["1234", "56xx"]Methods in technology.tabula with parameters of type TextChunkModifier and TypeMethodDescriptionvoidLine.addTextChunk(int i, TextChunk textChunk) voidLine.addTextChunk(TextChunk textChunk) Method parameters in technology.tabula with type arguments of type TextChunkModifier and TypeMethodDescriptionstatic booleanTextChunk.allSameChar(List<TextChunk> textChunks) TextChunk.groupByLines(List<TextChunk> textChunks) voidLine.setTextElements(List<TextChunk> textChunks)