GrammarScope  4.0.0
Public Member Functions | List of all members
grammarscope.iface.IDocumentFactoryService Interface Reference
Inheritance diagram for grammarscope.iface.IDocumentFactoryService:
Inheritance graph
[legend]

Public Member Functions

String getText () throws RuntimeException
 
List< WordSegmentgetWords () throws RuntimeException
 
List< SentenceSegmentgetSentences () throws RuntimeException
 
int getSentenceCount () throws RuntimeException
 
List< TokengetTokens (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< EntailmentgetEntailments (int sentenceIdx) throws RuntimeException
 
List< TriplegetTriples (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 ()
 

Detailed Description

Server-side interface used when document is being built. Used in server to client communication

Author
Bernard Bou [1313o.nosp@m.u@gm.nosp@m.ail.c.nosp@m.om]

Member Function Documentation

◆ getAnalysis()

AAnalysis grammarscope.iface.IDocumentFactoryService.getAnalysis ( int  sentenceIdx) throws RuntimeException

◆ getCoreferences()

ACoreferences grammarscope.iface.IDocumentFactoryService.getCoreferences ( ) throws RuntimeException

◆ getEntailments()

List<Entailment> grammarscope.iface.IDocumentFactoryService.getEntailments ( int  sentenceIdx) throws RuntimeException

◆ getGrammaticalStructure()

AGrammaticalStructure grammarscope.iface.IDocumentFactoryService.getGrammaticalStructure ( int  sentenceIdx) throws RuntimeException

◆ getNamedEntities()

ANamedEntities grammarscope.iface.IDocumentFactoryService.getNamedEntities ( int  sentenceIdx) throws RuntimeException

◆ getParseTree()

AParseTree grammarscope.iface.IDocumentFactoryService.getParseTree ( int  sentenceIdx) throws RuntimeException

◆ getPoses()

APartsOfSpeech grammarscope.iface.IDocumentFactoryService.getPoses ( int  sentenceIdx) throws RuntimeException

◆ getRelationDependents()

ARelationDependents grammarscope.iface.IDocumentFactoryService.getRelationDependents ( int  sentenceIdx) throws RuntimeException

◆ getReport()

String grammarscope.iface.IDocumentFactoryService.getReport ( int  sentenceIdx,
boolean  xmlFlag 
) throws RuntimeException

◆ getReports()

String [] grammarscope.iface.IDocumentFactoryService.getReports ( int  sentenceIdx,
boolean  xmlFlag 
) throws RuntimeException

Get (sentence) analysis strings

Parameters
sentenceIdxsentence index
xmlFlagXML format requested
Returns
array of strings [0] text, [1] parse tree, [2] grammatical structure, [3] typed dependencies, [4] semantic graph if successful

Implemented in grammarscope.document.Document, grammarscope.glue.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.io.xml.XMLDocumentFactory, and grammarscope.server.NullDocumentFactory.

◆ getSemanticGraph()

ASemanticGraph grammarscope.iface.IDocumentFactoryService.getSemanticGraph ( int  sentenceIdx,
TypedDependencyProvider  provider,
TypedDependencyMode  mode 
) throws RuntimeException

Get semantic graph artifact

Parameters
sentenceIdxsentence index
providertyped dependency provider
modetyped dependency mode
Returns
semantic graph artifact if successful

Implemented in grammarscope.document.Document, grammarscope.glue.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.io.xml.XMLDocumentFactory, and grammarscope.server.NullDocumentFactory.

◆ getSemanticGraphs()

Map<TypedDependencyProvider, Map<TypedDependencyMode, ASemanticGraph> > grammarscope.iface.IDocumentFactoryService.getSemanticGraphs ( int  sentenceIdx) throws RuntimeException

Get semantic graph artifacts

Parameters
sentenceIdxsentence index
Returns
typed dependency mode-indexed semantic graph artifacts if successful

Implemented in grammarscope.document.Document, grammarscope.glue.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.io.xml.XMLDocumentFactory, and grammarscope.server.NullDocumentFactory.

◆ getSentenceCount()

int grammarscope.iface.IDocumentFactoryService.getSentenceCount ( ) throws RuntimeException

◆ getSentences()

List<SentenceSegment> grammarscope.iface.IDocumentFactoryService.getSentences ( ) throws RuntimeException

◆ getSentiment()

Sentiment grammarscope.iface.IDocumentFactoryService.getSentiment ( int  sentenceIdx) throws RuntimeException

◆ getSupportedModes()

TypedDependencyMode [] grammarscope.iface.IDocumentFactoryService.getSupportedModes ( )

◆ getSupportedProviders()

TypedDependencyProvider [] grammarscope.iface.IDocumentFactoryService.getSupportedProviders ( )

◆ getText()

String grammarscope.iface.IDocumentFactoryService.getText ( ) throws RuntimeException

◆ getTextAnalysis()

ATextAnalysis grammarscope.iface.IDocumentFactoryService.getTextAnalysis ( TypedDependencyProvider  provider,
TypedDependencyMode  mode 
) throws RuntimeException

◆ getTextReport()

String grammarscope.iface.IDocumentFactoryService.getTextReport ( TypedDependencyProvider  provider,
TypedDependencyMode  mode,
boolean  xmlFlag 
) throws RuntimeException

◆ getTextReports()

String [] grammarscope.iface.IDocumentFactoryService.getTextReports ( TypedDependencyProvider  provider,
TypedDependencyMode  mode,
boolean  xmlFlag 
) throws RuntimeException

Get (text) analysis strings

Parameters
providerprovider
modemode
xmlFlagXML format requested
Returns
array of strings [0] text, [1] coreference, [2] sentence1, [3] sentence2, ...

Implemented in grammarscope.document.Document, grammarscope.glue.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.io.xml.XMLDocumentFactory, and grammarscope.server.NullDocumentFactory.

◆ getTokens()

List<Token> grammarscope.iface.IDocumentFactoryService.getTokens ( int  sentenceIdx) throws RuntimeException

◆ getTriples()

List<Triple> grammarscope.iface.IDocumentFactoryService.getTriples ( int  sentenceIdx) throws RuntimeException

◆ getTypedDependencies() [1/2]

Map<TypedDependencyProvider, Map<TypedDependencyMode, ATypedDependencies> > grammarscope.iface.IDocumentFactoryService.getTypedDependencies ( int  sentenceIdx) throws RuntimeException

Get typed dependencies artifact

Parameters
sentenceIdxsentence index
Returns
typed dependency mode-indexed typed dependencies artifacts if successful

Implemented in grammarscope.document.Document, grammarscope.glue.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.io.xml.XMLDocumentFactory, and grammarscope.server.NullDocumentFactory.

◆ getTypedDependencies() [2/2]

ATypedDependencies grammarscope.iface.IDocumentFactoryService.getTypedDependencies ( int  sentenceIdx,
TypedDependencyProvider  provider,
TypedDependencyMode  mode 
) throws RuntimeException

Get typed dependencies artifact

Parameters
sentenceIdxsentence index
providertyped dependency provider
modetyped dependency mode
Returns
typed dependencies artifact if successful

Implemented in grammarscope.document.Document, grammarscope.glue.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.artifacts.AbstractDocumentFactory, grammarscope.io.xml.XMLDocumentFactory, and grammarscope.server.NullDocumentFactory.

◆ getWords()

List<WordSegment> grammarscope.iface.IDocumentFactoryService.getWords ( ) throws RuntimeException

The documentation for this interface was generated from the following file: