Uses of Class
com.pervasive.datarush.analytics.text.TextContainer
Packages that use TextContainer
Package
Description
Provides various unstructured text processing operators.
-
Uses of TextContainer in com.pervasive.datarush.analytics.text
Subclasses of TextContainer in com.pervasive.datarush.analytics.textModifier and TypeClassDescriptionfinal classA TextContainer that can store a tokenized paragraph.final classA TextContainer that can store a tokenized sentence.final classA TextContainer that can store a tokenized document.final classA TextContainer that can store a tokenized word.Fields in com.pervasive.datarush.analytics.text declared as TextContainerModifier and TypeFieldDescriptionprotected TextContainerTextContainer.nextSiblingprotected TextContainerTextContainer.parentprotected TextContainerTextContainer.prevSiblingFields in com.pervasive.datarush.analytics.text with type parameters of type TextContainerMethods in com.pervasive.datarush.analytics.text that return TextContainerModifier and TypeMethodDescriptionstatic TextContainerTextTokenUtil.createTreeFromList(List<TextContainer> nodes) Creates a TextContainer from a list of TextContainer nodes.static TextContainerTextTokenUtil.createTreeFromString(String textTokens) Methods in com.pervasive.datarush.analytics.text that return types with arguments of type TextContainerModifier and TypeMethodDescriptionTextContainer.getChildren()TextNode.getChildren()Get the ordered list of direct children of this node.TextContainer.getIterator()TextContainer.getIterator(TextElementType type) TextNode.getIterator()Get an iterator over all descendants of this node including this node.TextNode.getIterator(TextElementType type) Get an iterator over the node and all descendants of this node of the specified type.TextContainer.getPostIterator()TextContainer.getPostIterator(TextElementType type) Methods in com.pervasive.datarush.analytics.text with parameters of type TextContainerModifier and TypeMethodDescriptionstatic NGramMapTextTokenUtil.calcNGramFreq(TextContainer text, int n) Creates an n-gram frequency model based on the contents of the TextContainer.static NGramMapTextTokenUtil.calcNGramFreq(TextContainer text, int n, Set<NGram> nGramSet) Creates an n-gram frequency model containing the specified set of terms based on the contents of the TextContainer.static WordMapTextTokenUtil.calcWordFreq(TextContainer text) Creates a term frequency model based on the contents of the TextContainer.static WordMapTextTokenUtil.calcWordFreq(TextContainer text, Set<String> wordSet) Creates a term frequency model containing the specified set of terms based on the contents of the TextContainer.static intTextTokenUtil.countElementType(TextContainer text, TextElementType type) Counts the number of elements of a specific type in the TextContainer.TextTokenUtil.genBagOfWords(TextContainer text) Creates a bag of words based on the contents of the TextContainer.TextTokenUtil.generateNGramList(TextContainer text, int n) Lists the unique n-grams contained in the TextContainer.TextTokenUtil.generateWordList(TextContainer text) Lists the unique words contained in the TextContainer.Method parameters in com.pervasive.datarush.analytics.text with type arguments of type TextContainerModifier and TypeMethodDescriptionstatic TextContainerTextTokenUtil.createTreeFromList(List<TextContainer> nodes) Creates a TextContainer from a list of TextContainer nodes.Constructor parameters in com.pervasive.datarush.analytics.text with type arguments of type TextContainerModifierConstructorDescriptionprotectedTextContainer(TextElementType type, List<? extends TextContainer> children) Construct a container of element type with the specified children.TokenizedParagraph(List<? extends TextContainer> tokens) Create a tokenized paragraph container.TokenizedSentence(List<? extends TextContainer> tokens) Create a tokenized sentence container.TokenizedText(List<? extends TextContainer> tokens) Create a tokenized document container. -
Uses of TextContainer in com.pervasive.datarush.analytics.text.filter
Methods in com.pervasive.datarush.analytics.text.filter that return TextContainerModifier and TypeMethodDescriptionAbstractTextFilter.filterText(TextContainer text) LengthFilter.filterText(TextContainer text) PunctuationFilter.filterText(TextContainer text) RegexFilter.filterText(TextContainer text) TextElementFilter.filterText(TextContainer text) TextFilter.filterText(TextContainer text) Returns the tokenized text with the filtered tokens removed.WordFilter.filterText(TextContainer text) Methods in com.pervasive.datarush.analytics.text.filter with parameters of type TextContainerModifier and TypeMethodDescriptionAbstractTextFilter.filterText(TextContainer text) LengthFilter.filterText(TextContainer text) PunctuationFilter.filterText(TextContainer text) RegexFilter.filterText(TextContainer text) TextElementFilter.filterText(TextContainer text) TextFilter.filterText(TextContainer text) Returns the tokenized text with the filtered tokens removed.WordFilter.filterText(TextContainer text)