Uses of Class
opennlp.tools.util.InvalidFormatException

Packages that use InvalidFormatException
opennlp.tools.chunker Package related to finding non-recursive syntactic annotation such as noun phrase chunks. 
opennlp.tools.cmdline   
opennlp.tools.cmdline.chunker   
opennlp.tools.cmdline.doccat   
opennlp.tools.cmdline.postag   
opennlp.tools.dictionary Package related to parsing and storing dictionaries. 
opennlp.tools.dictionary.serializer   
opennlp.tools.doccat Package for classifying a document into a category. 
opennlp.tools.namefind Package related to finding proper names and numeric amounts. 
opennlp.tools.ngram Package related to computing and storing n-gram frequencies. 
opennlp.tools.parser Package containing common code for performing full syntactic parsing. 
opennlp.tools.parser.chunking Package containing code for performing full syntactic parsing using shift/reduce-style decisions. 
opennlp.tools.parser.treeinsert Package containing experimental code for performing full syntactic parsing using attachment decisions. 
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.featuregen This package contains classes for generating sequence features. 
opennlp.tools.util.model   
 

Uses of InvalidFormatException in opennlp.tools.chunker
 

Methods in opennlp.tools.chunker that throw InvalidFormatException
 void ChunkerCrossValidator.evaluate(ObjectStream<ChunkSample> samples, int nFolds)
          Starts the evaluation.
protected  void ChunkerModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.chunker that throw InvalidFormatException
ChunkerModel(InputStream in)
           
 

Uses of InvalidFormatException in opennlp.tools.cmdline
 

Methods in opennlp.tools.cmdline that throw InvalidFormatException
protected abstract  T ModelLoader.loadModel(InputStream modelIn)
           
 

Uses of InvalidFormatException in opennlp.tools.cmdline.chunker
 

Methods in opennlp.tools.cmdline.chunker that throw InvalidFormatException
protected  ChunkerModel ChunkerModelLoader.loadModel(InputStream modelIn)
           
 

Uses of InvalidFormatException in opennlp.tools.cmdline.doccat
 

Methods in opennlp.tools.cmdline.doccat that throw InvalidFormatException
protected  DoccatModel DoccatModelLoader.loadModel(InputStream modelIn)
           
 

Uses of InvalidFormatException in opennlp.tools.cmdline.postag
 

Methods in opennlp.tools.cmdline.postag that throw InvalidFormatException
protected  POSModel POSModelLoader.loadModel(InputStream modelIn)
           
 

Uses of InvalidFormatException in opennlp.tools.dictionary
 

Constructors in opennlp.tools.dictionary that throw InvalidFormatException
Dictionary(InputStream in)
          Initializes the Dictionary from an existing dictionary resource.
Dictionary(InputStream in, boolean caseSensitive)
          Deprecated. This constructor is deprecated. Passing the case sensitivity flag has no effect. Use Dictionary.Dictionary(InputStream) instead and set the case sensitivity during the dictionary creation.
 

Uses of InvalidFormatException in opennlp.tools.dictionary.serializer
 

Methods in opennlp.tools.dictionary.serializer that throw InvalidFormatException
static boolean DictionarySerializer.create(InputStream in, EntryInserter inserter)
          Creates Entrys form the given InputStream and forwards these Entrys to the EntryInserter.
 void EntryInserter.insert(Entry entry)
           
 

Uses of InvalidFormatException in opennlp.tools.doccat
 

Methods in opennlp.tools.doccat that throw InvalidFormatException
protected  void DoccatModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.doccat that throw InvalidFormatException
DoccatModel(InputStream in)
           
 

Uses of InvalidFormatException in opennlp.tools.namefind
 

Methods in opennlp.tools.namefind that throw InvalidFormatException
static void TokenNameFinderEvaluator.main(String[] args)
          Deprecated. 
protected  void TokenNameFinderModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.namefind that throw InvalidFormatException
TokenNameFinderModel(InputStream in)
           
 

Uses of InvalidFormatException in opennlp.tools.ngram
 

Constructors in opennlp.tools.ngram that throw InvalidFormatException
NGramModel(InputStream in)
          Initializes the current instance.
 

Uses of InvalidFormatException in opennlp.tools.parser
 

Methods in opennlp.tools.parser that throw InvalidFormatException
protected  void ParserModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.parser that throw InvalidFormatException
ParserModel(InputStream in)
           
 

Uses of InvalidFormatException in opennlp.tools.parser.chunking
 

Methods in opennlp.tools.parser.chunking that throw InvalidFormatException
static void ParserEventStream.main(String[] args)
           
 

Uses of InvalidFormatException in opennlp.tools.parser.treeinsert
 

Methods in opennlp.tools.parser.treeinsert that throw InvalidFormatException
static void ParserEventStream.main(String[] args)
           
 

Uses of InvalidFormatException in opennlp.tools.postag
 

Methods in opennlp.tools.postag that throw InvalidFormatException
static POSDictionary POSDictionary.create(InputStream in)
          Creates a new POSDictionary from a provided InputStream.
static POSSample POSSample.parse(String sentenceString)
           
protected  void POSModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.postag that throw InvalidFormatException
POSModel(InputStream in)
           
 

Uses of InvalidFormatException in opennlp.tools.sentdetect
 

Methods in opennlp.tools.sentdetect that throw InvalidFormatException
static void SentenceModel.main(String[] args)
           
protected  void SentenceModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.sentdetect that throw InvalidFormatException
SentenceModel(InputStream in)
           
 

Uses of InvalidFormatException in opennlp.tools.tokenize
 

Methods in opennlp.tools.tokenize that throw InvalidFormatException
protected  void TokenizerModel.validateArtifactMap()
           
 

Constructors in opennlp.tools.tokenize that throw InvalidFormatException
DetokenizationDictionary(InputStream in)
           
TokenizerModel(InputStream in)
          Initializes the current instance.
 

Uses of InvalidFormatException in opennlp.tools.util.featuregen
 

Methods in opennlp.tools.util.featuregen that throw InvalidFormatException
static AdaptiveFeatureGenerator GeneratorFactory.create(InputStream xmlDescriptorIn, FeatureGeneratorResourceProvider resourceManager)
          Creates an AdaptiveFeatureGenerator from an provided XML descriptor.
 

Uses of InvalidFormatException in opennlp.tools.util.model
 

Methods in opennlp.tools.util.model that throw InvalidFormatException
 T ArtifactSerializer.create(InputStream in)
          Creates the artifact from the provided InputStream.
 FeatureGeneratorFactory FeatureGeneratorFactorySerializer.create(InputStream in)
          Deprecated.  
 opennlp.model.AbstractModel GenericModelSerializer.create(InputStream in)
           
 Class<?> ClassSerializer.create(InputStream in)
          Deprecated.  
protected  void BaseModel.validateArtifactMap()
          Validates the parsed artifacts.
 

Constructors in opennlp.tools.util.model that throw InvalidFormatException
BaseModel(String componentName, InputStream in)
          Initializes the current instance.
 



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