Package opennlp.tools.lemmatizer
Class DefaultLemmatizerSequenceValidator
java.lang.Object
opennlp.tools.lemmatizer.DefaultLemmatizerSequenceValidator
- All Implemented Interfaces:
SequenceValidator<String>
The default lemmatizer
SequenceValidator
implementation.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
validSequence
(int i, String[] sequence, String[] s, String outcome) Determines whether a particular continuation of asequence
is valid.
-
Constructor Details
-
DefaultLemmatizerSequenceValidator
public DefaultLemmatizerSequenceValidator()
-
-
Method Details
-
validSequence
Description copied from interface:SequenceValidator
Determines whether a particular continuation of asequence
is valid. This is used to restrict invalid sequences such as those used in start/continue tag-based chunking or could be used to implement tag dictionary restrictions.- Specified by:
validSequence
in interfaceSequenceValidator<String>
- Parameters:
i
- The index in theinputSequence
for which the new outcome is being proposed.sequence
- The input sequence ofSequenceValidator
.s
- The outcomes so far in this sequence.outcome
- The next proposed outcome for the outcomes sequence.- Returns:
true
if the sequence would still be valid with the new outcome,false
otherwise.
-