![]() |
GrammarScope
4.0.0
|
Public Member Functions | |
boolean | isReady () |
void | clear () |
void | recognize (int sentenceIdx) |
void | parse (int sentenceIdx) |
void | analyze (int sentenceIdx) |
void | processText () |
![]() | |
String | getText () throws RuntimeException |
List< WordSegment > | getWords () throws RuntimeException |
List< SentenceSegment > | getSentences () throws RuntimeException |
int | getSentenceCount () throws RuntimeException |
List< Token > | getTokens (int sentenceIdx) throws RuntimeException |
AParseTree | getParseTree (int sentenceIdx) throws RuntimeException |
APartsOfSpeech | getPoses (int sentenceIdx) throws RuntimeException |
AGrammaticalStructure | getGrammaticalStructure (int sentenceIdx) throws RuntimeException |
ARelationDependents | getRelationDependents (int sentenceIdx) throws RuntimeException |
ATypedDependencies | getTypedDependencies (int sentenceIdx, TypedDependencyProvider provider, TypedDependencyMode mode) throws RuntimeException |
Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies > > | getTypedDependencies (int sentenceIdx) throws RuntimeException |
ASemanticGraph | getSemanticGraph (int sentenceIdx, TypedDependencyProvider provider, TypedDependencyMode mode) throws RuntimeException |
Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph > > | getSemanticGraphs (int sentenceIdx) throws RuntimeException |
ANamedEntities | getNamedEntities (int sentenceIdx) throws RuntimeException |
Sentiment | getSentiment (int sentenceIdx) throws RuntimeException |
List< Entailment > | getEntailments (int sentenceIdx) throws RuntimeException |
List< Triple > | getTriples (int sentenceIdx) throws RuntimeException |
ACoreferences | getCoreferences () throws RuntimeException |
AAnalysis | getAnalysis (int sentenceIdx) throws RuntimeException |
ATextAnalysis | getTextAnalysis (TypedDependencyProvider provider, TypedDependencyMode mode) throws RuntimeException |
String | getReport (int sentenceIdx, boolean xmlFlag) throws RuntimeException |
String[] | getReports (int sentenceIdx, boolean xmlFlag) throws RuntimeException |
String | getTextReport (TypedDependencyProvider provider, TypedDependencyMode mode, boolean xmlFlag) throws RuntimeException |
String[] | getTextReports (TypedDependencyProvider provider, TypedDependencyMode mode, boolean xmlFlag) throws RuntimeException |
TypedDependencyProvider[] | getSupportedProviders () |
TypedDependencyMode[] | getSupportedModes () |
Document interface
void grammarscope.document.IDocument.analyze | ( | int | sentenceIdx | ) |
Analyze sentence
sentenceIdx | sentence index |
Implemented in grammarscope.document.Document.
void grammarscope.document.IDocument.clear | ( | ) |
Clear cached data
Implemented in grammarscope.document.Document.
boolean grammarscope.document.IDocument.isReady | ( | ) |
void grammarscope.document.IDocument.parse | ( | int | sentenceIdx | ) |
void grammarscope.document.IDocument.processText | ( | ) |
Process text level information (like coreference)
Implemented in grammarscope.document.Document.
void grammarscope.document.IDocument.recognize | ( | int | sentenceIdx | ) |
Recognize sentence (parts-of-speech, named entities, sentiment)
sentenceIdx | sentence index |
Implemented in grammarscope.document.Document.