Uses of Class
opennlp.tools.util.BaseToolFactory

Packages that use BaseToolFactory
opennlp.tools.chunker Package related to finding non-recursive syntactic annotation such as noun phrase chunks. 
opennlp.tools.postag Package related to part-of-speech tagging. 
opennlp.tools.sentdetect Package related to identifying sentece boundries. 
opennlp.tools.tokenize Contains classes related to finding token or words in a string. 
opennlp.tools.util Package containing utility data structures and algorithms used by multiple other packages. 
opennlp.tools.util.model   
 

Uses of BaseToolFactory in opennlp.tools.chunker
 

Subclasses of BaseToolFactory in opennlp.tools.chunker
 class ChunkerFactory
           
 

Methods in opennlp.tools.chunker that return types with arguments of type BaseToolFactory
protected  Class<? extends BaseToolFactory> ChunkerModel.getDefaultFactory()
           
 

Uses of BaseToolFactory in opennlp.tools.postag
 

Subclasses of BaseToolFactory in opennlp.tools.postag
 class POSTaggerFactory
          The factory that provides POS Tagger default implementations and resources
 

Methods in opennlp.tools.postag that return types with arguments of type BaseToolFactory
protected  Class<? extends BaseToolFactory> POSModel.getDefaultFactory()
           
 

Uses of BaseToolFactory in opennlp.tools.sentdetect
 

Subclasses of BaseToolFactory in opennlp.tools.sentdetect
 class SentenceDetectorFactory
          The factory that provides SentenceDetecor default implementations and resources
 

Methods in opennlp.tools.sentdetect that return types with arguments of type BaseToolFactory
protected  Class<? extends BaseToolFactory> SentenceModel.getDefaultFactory()
           
 

Uses of BaseToolFactory in opennlp.tools.tokenize
 

Subclasses of BaseToolFactory in opennlp.tools.tokenize
 class TokenizerFactory
          The factory that provides Tokenizer default implementations and resources.
 

Methods in opennlp.tools.tokenize that return types with arguments of type BaseToolFactory
protected  Class<? extends BaseToolFactory> TokenizerModel.getDefaultFactory()
           
 

Uses of BaseToolFactory in opennlp.tools.util
 

Methods in opennlp.tools.util that return BaseToolFactory
static BaseToolFactory BaseToolFactory.create(Class<? extends BaseToolFactory> factoryClass, ArtifactProvider artifactProvider)
           
static BaseToolFactory BaseToolFactory.create(String subclassName, ArtifactProvider artifactProvider)
           
 

Method parameters in opennlp.tools.util with type arguments of type BaseToolFactory
static BaseToolFactory BaseToolFactory.create(Class<? extends BaseToolFactory> factoryClass, ArtifactProvider artifactProvider)
           
 

Uses of BaseToolFactory in opennlp.tools.util.model
 

Fields in opennlp.tools.util.model declared as BaseToolFactory
protected  BaseToolFactory BaseModel.toolFactory
           
 

Methods in opennlp.tools.util.model that return types with arguments of type BaseToolFactory
protected  Class<? extends BaseToolFactory> BaseModel.getDefaultFactory()
          Sub-classes should override this method if their module has a default BaseToolFactory sub-class.
 

Constructors in opennlp.tools.util.model with parameters of type BaseToolFactory
BaseModel(String componentName, String languageCode, Map<String,String> manifestInfoEntries, BaseToolFactory factory)
          Initializes the current instance.
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.