Package opennlp.tools.lemmatizer
Klasse DefaultLemmatizerSequenceValidator
java.lang.Object
opennlp.tools.lemmatizer.DefaultLemmatizerSequenceValidator
- Alle implementierten Schnittstellen:
SequenceValidator<String>
The default lemmatizer
SequenceValidator implementation.-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleanvalidSequence(int i, String[] sequence, String[] s, String outcome) Determines whether a particular continuation of asequenceis valid.
-
Konstruktordetails
-
DefaultLemmatizerSequenceValidator
public DefaultLemmatizerSequenceValidator()
-
-
Methodendetails
-
validSequence
Beschreibung aus Schnittstelle kopiert:SequenceValidatorDetermines whether a particular continuation of asequenceis 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.- Angegeben von:
validSequencein SchnittstelleSequenceValidator<String>- Parameter:
i- The index in theinputSequencefor 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.- Gibt zurück:
trueif the sequence would still be valid with the new outcome,falseotherwise.
-