Package opennlp.tools.tokenize
Interface Detokenizer
- All Known Implementing Classes:
- DictionaryDetokenizer
public interface Detokenizer
A 
Detokenizer merges tokens back to their detokenized representation.- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumThis enum contains an operation for every token to merge the tokens together to their detokenized form.
- 
Method SummaryModifier and TypeMethodDescriptiondetokenize(String[] tokens) Detokenizes the collection of tokens.detokenize(String[] tokens, String splitMarker) Detokenizes the inputtokensinto a String.
- 
Method Details- 
detokenizeDetokenizes the collection of tokens.- Parameters:
- tokens- The elements which should be detokenized.
- Returns:
- The merge operationsto handle giventokens.
 
- 
detokenizeDetokenizes the inputtokensinto a String. Tokens which are connected without awhitespacecharacter in between can be separated by a givensplitMarker.- Parameters:
- tokens- The elements which should be concatenated.
- splitMarker- The split marker or- null.
- Returns:
- The concatenated tokens as a single string.
 
 
-