Package opennlp.tools.namefind
Interface NameContextGenerator
- All Superinterfaces:
- BeamSearchContextGenerator<String>
- All Known Implementing Classes:
- DefaultNameContextGenerator
Interface for generating the context for a 
name finder by
 specifying a set of feature generators.- 
Method SummaryModifier and TypeMethodDescriptionvoidaddFeatureGenerator(AdaptiveFeatureGenerator generator) Adds a feature generator.voidInforms all the feature generators that the context of the adaptive data (typically a document) is no longer valid and should be cleared.voidupdateAdaptiveData(String[] tokens, String[] outcomes) Informs all the feature generators that the specifiedtokenshave been classified with the corresponds set of specifiedoutcomes.Methods inherited from interface opennlp.tools.util.BeamSearchContextGeneratorgetContext
- 
Method Details- 
addFeatureGeneratorAdds a feature generator.- Parameters:
- generator- The- feature generatorto add.
 
- 
updateAdaptiveDataInforms all the feature generators that the specifiedtokenshave been classified with the corresponds set of specifiedoutcomes.- Parameters:
- tokens- The tokens of a sentence or another text unit which has been processed.
- outcomes- The outcomes associated with the specified- tokens.
 
- 
clearAdaptiveDatavoid clearAdaptiveData()Informs all the feature generators that the context of the adaptive data (typically a document) is no longer valid and should be cleared.
 
-