Package opennlp.tools.namefind
Klasse NameFinderSequenceValidator
java.lang.Object
opennlp.tools.namefind.NameFinderSequenceValidator
- Alle implementierten Schnittstellen:
SequenceValidator<String>
The default name finder
SequenceValidator
implementation.
Created by the BioCodec
.- Siehe auch:
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
validSequence
(int i, String[] inputSequence, String[] outcomesSequence, String outcome) Determines whether a particular continuation of asequence
is valid.
-
Konstruktordetails
-
NameFinderSequenceValidator
public NameFinderSequenceValidator()
-
-
Methodendetails
-
validSequence
public boolean validSequence(int i, String[] inputSequence, String[] outcomesSequence, String outcome) Beschreibung aus Schnittstelle kopiert: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.- Angegeben von:
validSequence
in SchnittstelleSequenceValidator<String>
- Parameter:
i
- The index in theinputSequence
for which the new outcome is being proposed.inputSequence
- The input sequence ofSequenceValidator
.outcomesSequence
- The outcomes so far in this sequence.outcome
- The next proposed outcome for the outcomes sequence.- Gibt zurück:
true
if the sequence would still be valid with the new outcome,false
otherwise.
-