Package opennlp.tools.sentdetect
Class ThreadSafeSentenceDetectorME
java.lang.Object
opennlp.tools.sentdetect.ThreadSafeSentenceDetectorME
- All Implemented Interfaces:
- AutoCloseable,- SentenceDetector
@ThreadSafe
public class ThreadSafeSentenceDetectorME
extends Object
implements SentenceDetector, AutoCloseable
A thread-safe version of 
SentenceDetectorME. Using it is completely transparent.
 You can use it in a single-threaded context as well, it only incurs a minimal overhead.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionThreadSafeSentenceDetectorME(String language) Initializes aThreadSafeSentenceDetectorMEby downloading a default model for a givenlanguage.Initializes aThreadSafeSentenceDetectorMEwith the specifiedmodel.ThreadSafeSentenceDetectorME(SentenceModel model, Dictionary abbDict) Instantiates aThreadSafeSentenceDetectorMEwith an existingSentenceModel.
- 
Method Summary
- 
Constructor Details- 
ThreadSafeSentenceDetectorMEInitializes aThreadSafeSentenceDetectorMEby downloading a default model for a givenlanguage.- Parameters:
- language- An ISO conform language code.
- Throws:
- IOException- Thrown if the model could not be downloaded or saved.
 
- 
ThreadSafeSentenceDetectorMEInitializes aThreadSafeSentenceDetectorMEwith the specifiedmodel.- Parameters:
- model- A valid- SentenceModel.
 
- 
ThreadSafeSentenceDetectorMEInstantiates aThreadSafeSentenceDetectorMEwith an existingSentenceModel.- Parameters:
- model- The- SentenceModelto be used.
- abbDict- The- Dictionaryto be used. It must fit the language of the- model.
 
 
- 
- 
Method Details- 
getSentenceProbabilitiespublic double[] getSentenceProbabilities()
- 
sentDetectDescription copied from interface:SentenceDetectorDetects sentences in a character sequence.- Specified by:
- sentDetectin interface- SentenceDetector
- Parameters:
- s- The- CharSequencefor which sentences shall to be detected.
- Returns:
- The String[] with the individual sentences as the array elements.
 
- 
sentPosDetectDescription copied from interface:SentenceDetectorDetects sentences in a character sequence.- Specified by:
- sentPosDetectin interface- SentenceDetector
- Parameters:
- s- The- CharSequencefor which sentences shall be detected.
- Returns:
- The array of spans(offsets intos) for each detected sentence as the individuals array elements.
 
- 
closepublic void close()- Specified by:
- closein interface- AutoCloseable
 
 
-