Uses of Class
opennlp.tools.util.StringList

Packages that use StringList
opennlp.tools.cmdline.namefind   
opennlp.tools.dictionary Package related to parsing and storing dictionaries. 
opennlp.tools.dictionary.serializer   
opennlp.tools.formats Experimental package related to converting various corpora to OpenNLP Format. 
opennlp.tools.ngram Package related to computing and storing n-gram frequencies. 
opennlp.tools.util Package containing utility data structures and algorithms used by multiple other packages. 
 

Uses of StringList in opennlp.tools.cmdline.namefind
 

Method parameters in opennlp.tools.cmdline.namefind with type arguments of type StringList
static Dictionary CensusDictionaryCreatorTool.createDictionary(ObjectStream<StringList> sampleStream)
           
 

Uses of StringList in opennlp.tools.dictionary
 

Methods in opennlp.tools.dictionary that return types with arguments of type StringList
 Iterator<StringList> Dictionary.iterator()
          Retrieves an Iterator over all tokens.
 

Methods in opennlp.tools.dictionary with parameters of type StringList
 boolean Dictionary.contains(StringList tokens)
          Checks if this dictionary has the given entry.
 void Dictionary.put(StringList tokens)
          Adds the tokens to the dictionary as one new entry.
 void Dictionary.remove(StringList tokens)
          Removes the given tokens form the current instance.
 

Constructor parameters in opennlp.tools.dictionary with type arguments of type StringList
Index(Iterator<StringList> tokenLists)
          Initializes the current instance with the given StringList Iterator.
 

Uses of StringList in opennlp.tools.dictionary.serializer
 

Methods in opennlp.tools.dictionary.serializer that return StringList
 StringList Entry.getTokens()
          Retrieves the Tokens.
 

Constructors in opennlp.tools.dictionary.serializer with parameters of type StringList
Entry(StringList tokens, Attributes attributes)
          Initializes the current instance.
 

Uses of StringList in opennlp.tools.formats
 

Methods in opennlp.tools.formats that return StringList
 StringList NameFinderCensus90NameStream.read()
           
 

Uses of StringList in opennlp.tools.ngram
 

Methods in opennlp.tools.ngram that return types with arguments of type StringList
 Iterator<StringList> NGramModel.iterator()
          Retrieves an Iterator over all StringList entries.
 

Methods in opennlp.tools.ngram with parameters of type StringList
 void NGramModel.add(StringList ngram)
          Adds one NGram, if it already exists the count increase by one.
 void NGramModel.add(StringList ngram, int minLength, int maxLength)
          Adds NGrams up to the specified length to the current instance.
 boolean NGramModel.contains(StringList tokens)
          Checks fit he given tokens are contained by the current instance.
 int NGramModel.getCount(StringList ngram)
          Retrieves the count of the given ngram.
 void NGramModel.remove(StringList tokens)
          Removes the specified tokens form the NGram model, they are just dropped.
 void NGramModel.setCount(StringList ngram, int count)
          Sets the count of an existing ngram.
 

Uses of StringList in opennlp.tools.util
 

Methods in opennlp.tools.util with parameters of type StringList
 boolean StringList.compareToIgnoreCase(StringList tokens)
          Compares to tokens list and ignores the case of the tokens.
 



Copyright © 2010. All Rights Reserved.