|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WVToolException | |
---|---|
edu.udo.cs.wvtool.config | Provides classes connected with the dynamic configuration of the tool. |
edu.udo.cs.wvtool.generic.charmapper | Provides classes and interfaces related to char conversion. |
edu.udo.cs.wvtool.generic.inputfilter | Provides classes and interfaces for document input filters. |
edu.udo.cs.wvtool.generic.loader | Provides classes and interfaces for document loading. |
edu.udo.cs.wvtool.generic.output | Provides classes and interfaces for output filters. |
edu.udo.cs.wvtool.generic.stemmer | Provides classes and interfaces for stemmers. |
edu.udo.cs.wvtool.generic.tokenizer | Provides classes and interfaces for tokenization. |
edu.udo.cs.wvtool.generic.vectorcreation | Provides classes and interfaces for vector creation. |
edu.udo.cs.wvtool.generic.wordfilter | Provides classes and interfaces for the filtering of words. |
edu.udo.cs.wvtool.main | The main classes, which contain most of the relevant interfaces. |
edu.udo.cs.wvtool.util | Provides some utility classes. |
Uses of WVToolException in edu.udo.cs.wvtool.config |
---|
Subclasses of WVToolException in edu.udo.cs.wvtool.config | |
---|---|
class |
WVTConfigException
Exception that is thrown if a configuration problem is encountered. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.charmapper |
---|
Methods in edu.udo.cs.wvtool.generic.charmapper that throw WVToolException | |
---|---|
java.io.Reader |
WVTCharConverter.convertChars(java.io.Reader source,
WVTDocumentInfo d)
Convert characters. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.inputfilter |
---|
Methods in edu.udo.cs.wvtool.generic.inputfilter that throw WVToolException | |
---|---|
java.io.Reader |
WVTInputFilter.convertToPlainText(java.io.InputStream source,
WVTDocumentInfo d)
Convert the input stream to plain natural text. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.loader |
---|
Methods in edu.udo.cs.wvtool.generic.loader that throw WVToolException | |
---|---|
void |
UniversalLoader.close(WVTDocumentInfo d)
|
void |
WVTDocumentLoader.close(WVTDocumentInfo d)
Close the resource from which the given document has been read. |
void |
SourceAsTextLoader.close(WVTDocumentInfo d)
Close the resource from which the given document has been read. |
java.io.InputStream |
UniversalLoader.loadDocument(WVTDocumentInfo d)
|
java.io.InputStream |
WVTDocumentLoader.loadDocument(WVTDocumentInfo d)
Open the document and return an input stream on it. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.output |
---|
Methods in edu.udo.cs.wvtool.generic.output that throw WVToolException | |
---|---|
void |
WVTOutputFilter.write(WVTWordVector wv)
Store a word vector. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.stemmer |
---|
Methods in edu.udo.cs.wvtool.generic.stemmer that throw WVToolException | |
---|---|
java.lang.String |
AbstractStemmer.nextToken()
|
private void |
SnowballStemmerWrapper.setLanguage(java.lang.String language)
|
TokenEnumeration |
SnowballStemmerWrapper.stem(TokenEnumeration source,
WVTDocumentInfo d)
|
TokenEnumeration |
WVTStemmer.stem(TokenEnumeration source,
WVTDocumentInfo d)
Convert a list of tokens to a list of stems. |
TokenEnumeration |
AbstractStemmer.stem(TokenEnumeration source,
WVTDocumentInfo d)
|
Constructors in edu.udo.cs.wvtool.generic.stemmer that throw WVToolException | |
---|---|
SnowballStemmerWrapper()
Constructor for SnowballStemmerWrapper. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.tokenizer |
---|
Methods in edu.udo.cs.wvtool.generic.tokenizer that throw WVToolException | |
---|---|
java.lang.String |
NGramTokenizer.nextToken()
|
private void |
NGramTokenizer.readNextToken()
Read a token from the character stream and store it into currentToken. |
TokenEnumeration |
WVTTokenizer.tokenize(java.io.Reader source,
WVTDocumentInfo d)
Tokenize a character stream. |
TokenEnumeration |
NGramTokenizer.tokenize(java.io.Reader source,
WVTDocumentInfo d)
|
Uses of WVToolException in edu.udo.cs.wvtool.generic.vectorcreation |
---|
Methods in edu.udo.cs.wvtool.generic.vectorcreation that throw WVToolException | |
---|---|
WVTWordVector |
WVTVectorCreator.createVector(int[] frequencies,
int numTermOccurences,
WVTWordList wordList,
WVTDocumentInfo d)
Create a word vector from term frequencies and a word list. |
Uses of WVToolException in edu.udo.cs.wvtool.generic.wordfilter |
---|
Methods in edu.udo.cs.wvtool.generic.wordfilter that throw WVToolException | |
---|---|
TokenEnumeration |
SelectingWordFilter.filter(TokenEnumeration source,
WVTDocumentInfo d)
|
TokenEnumeration |
WVTWordFilter.filter(TokenEnumeration source,
WVTDocumentInfo d)
Filter tokens from a token stream. |
TokenEnumeration |
AbstractStopWordFilter.filter(TokenEnumeration source,
WVTDocumentInfo d)
|
Uses of WVToolException in edu.udo.cs.wvtool.main |
---|
Methods in edu.udo.cs.wvtool.main that throw WVToolException | |
---|---|
WVTWordVector |
WVTool.createVector(java.lang.String text,
WVTDocumentInfo d,
WVTConfiguration config,
WVTWordList wordList)
Create a single word vector. |
WVTWordVector |
WVTool.createVector(java.lang.String text,
WVTWordList wordList)
Create an individual word vector from a String using TF/IDF weights and stadard configuration. |
void |
WVTool.createVectors(WVTInputList input,
WVTConfiguration config)
Deprecated. Please use the method createVectors(WVTInputList input, WVTConfiguration config, int pruneMin, int pruneMax) |
void |
WVTool.createVectors(WVTInputList input,
WVTConfiguration config,
int pruneMin,
int pruneMax)
Create a word list and after this word vectors, both from the same input list. |
void |
WVTool.createVectors(WVTInputList input,
WVTConfiguration config,
WVTWordList wordList)
Create word vectors from an input list. |
WVTWordList |
WVTool.createWordList(WVTInputList input,
WVTConfiguration config)
Create a word list from scrat based on the given texts. |
WVTWordList |
WVTool.createWordList(WVTInputList input,
WVTConfiguration config,
java.util.List initialWords,
boolean addWords)
Create a word list based on an existing word list. |
void |
WVTool.iterateWords(WVTInputList input,
WVTConfiguration config,
WVToolWordListener listener)
Process the specified documents using the configured steps and send all encountered words to a listener class. |
Uses of WVToolException in edu.udo.cs.wvtool.util |
---|
Subclasses of WVToolException in edu.udo.cs.wvtool.util | |
---|---|
class |
WVToolIOException
Exception thrown if a problem occurs during i/o processing. |
Methods in edu.udo.cs.wvtool.util that throw WVToolException | |
---|---|
java.lang.String |
TokenEnumeration.nextToken()
Return the next token from the stream. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |