Java edu.stanford.nlp.trees TreebankLanguagePack fields, constructors, methods, implement or subclass

Example usage for Java edu.stanford.nlp.trees TreebankLanguagePack fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for edu.stanford.nlp.trees TreebankLanguagePack.

The text is from its open source code.

Method

TokenizerFactorygetTokenizerFactory()
Return a tokenizer factory which might be suitable for tokenizing text that will be used with this Treebank/Language pair.
GrammaticalStructureFactorygrammaticalStructureFactory()
Return a GrammaticalStructureFactory suitable for this language/treebank.
GrammaticalStructureFactorygrammaticalStructureFactory(Predicate puncFilter, HeadFinder typedDependencyHF)
Return a GrammaticalStructureFactory suitable for this language/treebank.
booleanisPunctuationWord(String str)
Accepts a String that is a punctuation word, and rejects everything else.
booleanisSentenceFinalPunctuationTag(String str)
Accepts a String that is a sentence end punctuation tag, and rejects everything else.
PredicatepunctuationWordRejectFilter()
Returns a filter that accepts a String that is not a punctuation word, and rejects punctuation.
String[]sentenceFinalPunctuationWords()
Returns a String array of sentence final punctuation words for this treebank/language.
HeadFindertypedDependencyHeadFinder()
The HeadFinder to use when making typed dependencies.