GrammarScope  4.0.0
Classes | Public Member Functions | Static Public Attributes | Protected Member Functions | Protected Attributes | Private Member Functions | Static Private Member Functions | Private Attributes | Static Private Attributes | List of all members
grammarscope.glue.AbstractDocumentFactory Class Referenceabstract
Inheritance diagram for grammarscope.glue.AbstractDocumentFactory:
Inheritance graph
[legend]
Collaboration diagram for grammarscope.glue.AbstractDocumentFactory:
Collaboration graph
[legend]

Classes

class  Cache
 

Public Member Functions

 AbstractDocumentFactory (final Language language)
 
boolean init (final String text)
 
abstract List< TokengetTokens (final int sentenceIdx) throws RuntimeException
 
abstract TypedDependencyProvider[] getSupportedProviders () throws RuntimeException
 
abstract TypedDependencyMode[] getSupportedModes () throws RuntimeException
 
String getText () throws RuntimeException
 
List< SentenceSegmentgetSentences () throws RuntimeException
 
int getSentenceCount () throws RuntimeException
 
List< WordSegmentgetWords () throws RuntimeException
 
AParseTree getParseTree (final int sentenceIdx) throws RuntimeException
 
APartsOfSpeech getPoses (final int sentenceIdx) throws RuntimeException
 
AGrammaticalStructure getGrammaticalStructure (final int sentenceIdx) throws RuntimeException
 
ARelationDependents getRelationDependents (final int sentenceIdx) throws RuntimeException
 
ATypedDependencies getTypedDependencies (final int sentenceIdx, final TypedDependencyProvider provider, final TypedDependencyMode mode) throws RuntimeException
 
Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies > > getTypedDependencies (final int sentenceIdx) throws RuntimeException
 
ASemanticGraph getSemanticGraph (final int sentenceIdx, final TypedDependencyProvider provider, final TypedDependencyMode mode) throws RuntimeException
 
Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph > > getSemanticGraphs (final int sentenceIdx) throws RuntimeException
 
ANamedEntities getNamedEntities (final int sentenceIdx) throws RuntimeException
 
Sentiment getSentiment (final int sentenceIdx) throws RuntimeException
 
List< EntailmentgetEntailments (final int sentenceIdx)
 
List< TriplegetTriples (final int sentenceIdx)
 
ACoreferences getCoreferences () throws RuntimeException
 
ATextAnalysis getTextAnalysis (final TypedDependencyProvider provider, final TypedDependencyMode mode) throws RuntimeException
 
AAnalysis getAnalysis (final int sentenceIdx) throws RuntimeException
 
String[] getReports (final int sentenceIdx, final boolean xMLFlag) throws RuntimeException
 
String getReport (final int sentenceIdx, final boolean xMLFlag) throws RuntimeException
 
String getTextReport (final TypedDependencyProvider provider, final TypedDependencyMode mode, final boolean xMLModeFlag) throws RuntimeException
 
String[] getTextReports (final TypedDependencyProvider provider, final TypedDependencyMode mode, final boolean xMLModeFlag) throws RuntimeException
 

Static Public Attributes

static final XMLPrinter xMLPrinter = stanfordMode ? new XMLPrinterStanford() : new XMLPrinterGrammarScope()
 

Protected Member Functions

abstract Segmentation getSegmentation () throws RuntimeException
 
abstract Tree getStanfordParseTree (final int sentenceIdx) throws RuntimeException
 
abstract GrammaticalStructure getStanfordGrammaticalStructure (final int sentenceIdx) throws RuntimeException
 
abstract Collection< TypedDependency > getStanfordTypedDependencies (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException
 
abstract Collection< TypedDependency > getStanfordTypedDependencies2 (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException
 
abstract SemanticGraph getStanfordSemanticGraph (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException
 
abstract SemanticGraph getStanfordSemanticGraph2 (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException
 
abstract List< NamedEntitygetStanfordNamedEntities (final int sentenceIdx) throws RuntimeException
 
abstract Sentiment getStanfordSentiment (int sentenceIdx)
 
abstract List< EntailmentgetStanfordEntailments (int sentenceIdx)
 
abstract List< TriplegetStanfordTriples (int sentenceIdx)
 
abstract Coreferences getStanfordCoreferences () throws RuntimeException
 

Protected Attributes

final Language language
 
String text
 
final RelationDependentsDirectFactory relationDependentsDirectFactory
 
final Cache< List< Token > > tokens
 
final Cache< Tree > parseTrees
 
final Cache< GrammaticalStructure > grammaticalStructures
 
final Map< TypedDependencyMode, Cache< Collection< TypedDependency > > > typedDependencies
 
final Map< TypedDependencyMode, Cache< Collection< TypedDependency > > > typedDependencies2
 

Private Member Functions

Map< TypedDependencyMode, Collection< TypedDependency > > makeTypedDependencies (final int sentenceIdx)
 
Map< TypedDependencyMode, Collection< TypedDependency > > makeTypedDependencies2 (final int sentenceIdx)
 
Map< TypedDependencyMode, SemanticGraph > makeSemanticGraphs (final int sentenceIdx)
 
Map< TypedDependencyMode, SemanticGraph > makeSemanticGraphs2 (final int sentenceIdx)
 

Static Private Member Functions

static List< SentenceSegmentgroupToSentence (final List< List< WordSegment >> sentenceWordSegments)
 
static List< WordSegmentflatten (final List< List< WordSegment >> sentenceWordSegments)
 
static Segment getSpan (final List<? extends Segment > segments)
 
static String tokensToString (final List< Token > tokens, @SuppressWarnings("SameParameterValue") final String tokenizer, final boolean isXml)
 
static String treeToString (final Tree parseTree, final boolean isXml)
 
static String grammaticalStructureToString (final GrammaticalStructure grammaticalStructure, final boolean isXml)
 
static String typedDependenciesToString (final Map< TypedDependencyMode, Collection< TypedDependency >> typedDependencies, final TypedDependencyProvider provider, final boolean isXML)
 
static String semanticGraphsToString (final Map< TypedDependencyMode, SemanticGraph > semanticGraphs, final TypedDependencyProvider provider, final boolean isXml)
 
static String namedEntitiesToString (final List< NamedEntity > namedEntities, final String sentenceString, final SentenceSegment sentenceSegment, final boolean isXml)
 
static String sentimentToString (final Sentiment sentiment, final boolean isXml)
 
static String entailmentsToString (final List< Entailment > entailments, final boolean isXml)
 
static String triplesToString (final List< Triple > triples, final boolean isXml)
 
static String coreferencesToString (final Coreferences coreferences, final boolean isXml)
 

Private Attributes

List< WordSegmentwordSegments
 
List< SentenceSegmentsentenceSegments
 

Static Private Attributes

static final boolean stanfordMode = false
 
static final boolean relationDependentsFromGrammaticalStructure = false
 

Detailed Description

Abstract document factory

Author
Bernard Bou

Constructor & Destructor Documentation

◆ AbstractDocumentFactory()

grammarscope.glue.AbstractDocumentFactory.AbstractDocumentFactory ( final Language  language)

Constructor

Parameters
languagelanguage

Member Function Documentation

◆ coreferencesToString()

static String grammarscope.glue.AbstractDocumentFactory.coreferencesToString ( final Coreferences  coreferences,
final boolean  isXml 
)
staticprivate

Coreferences to string

Parameters
coreferencescoreferences
isXmlxml format
Returns
string

◆ entailmentsToString()

static String grammarscope.glue.AbstractDocumentFactory.entailmentsToString ( final List< Entailment entailments,
final boolean  isXml 
)
staticprivate

Entailments to string

Parameters
entailmentsentailments
isXmlxml format
Returns
string

◆ flatten()

static List<WordSegment> grammarscope.glue.AbstractDocumentFactory.flatten ( final List< List< WordSegment >>  sentenceWordSegments)
staticprivate

Flatten hierarchical list of per-sentence word segments

Parameters
sentenceWordSegmentshierarchical list of per-sentence word segments
Returns
flat word segment list

◆ getAnalysis()

AAnalysis grammarscope.glue.AbstractDocumentFactory.getAnalysis ( final int  sentenceIdx) throws RuntimeException

Get (sentence) analysis artifact

Parameters
sentenceIdxsentence index
Returns
analysis if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getCoreferences()

ACoreferences grammarscope.glue.AbstractDocumentFactory.getCoreferences ( ) throws RuntimeException

Get coreferences artifact

Returns
coreferences artifact if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getEntailments()

List<Entailment> grammarscope.glue.AbstractDocumentFactory.getEntailments ( final int  sentenceIdx)

Get entailments

Parameters
sentenceIdxsentence index
Returns
entailments if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getGrammaticalStructure()

AGrammaticalStructure grammarscope.glue.AbstractDocumentFactory.getGrammaticalStructure ( final int  sentenceIdx) throws RuntimeException

Get grammatical structure artifact

Parameters
sentenceIdxsentence index
Returns
grammatical structure artifact if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getNamedEntities()

ANamedEntities grammarscope.glue.AbstractDocumentFactory.getNamedEntities ( final int  sentenceIdx) throws RuntimeException

Get named entities artifact

Parameters
sentenceIdxsentence index
Returns
named entities artifact if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getParseTree()

AParseTree grammarscope.glue.AbstractDocumentFactory.getParseTree ( final int  sentenceIdx) throws RuntimeException

Get parse artifact

Parameters
sentenceIdxsentence index
Returns
parse tree artifact if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getPoses()

APartsOfSpeech grammarscope.glue.AbstractDocumentFactory.getPoses ( final int  sentenceIdx) throws RuntimeException

Get parts-of-speech artifact

Parameters
sentenceIdxsentence index
Returns
parts-of-speech artifact if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getRelationDependents()

ARelationDependents grammarscope.glue.AbstractDocumentFactory.getRelationDependents ( final int  sentenceIdx) throws RuntimeException

Get relation dependents artifact

Parameters
sentenceIdxsentence index
Returns
relation dependents artifact if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getReport()

String grammarscope.glue.AbstractDocumentFactory.getReport ( final int  sentenceIdx,
final boolean  xmlFlag 
) throws RuntimeException

Get (sentence) analysis string

Parameters
sentenceIdxsentence index
xmlFlagXML format requested
Returns
string

Implements grammarscope.iface.IDocumentFactoryService.

◆ getReports()

String [] grammarscope.glue.AbstractDocumentFactory.getReports ( final int  sentenceIdx,
final 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

Implements grammarscope.iface.IDocumentFactoryService.

◆ getSegmentation()

abstract Segmentation grammarscope.glue.AbstractDocumentFactory.getSegmentation ( ) throws RuntimeException
abstractprotected

◆ getSemanticGraph()

ASemanticGraph grammarscope.glue.AbstractDocumentFactory.getSemanticGraph ( final int  sentenceIdx,
final TypedDependencyProvider  provider,
final TypedDependencyMode  mode 
) throws RuntimeException

Get semantic graph artifact

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

Implements grammarscope.iface.IDocumentFactoryService.

◆ getSemanticGraphs()

Map<TypedDependencyProvider, Map<TypedDependencyMode, ASemanticGraph> > grammarscope.glue.AbstractDocumentFactory.getSemanticGraphs ( final int  sentenceIdx) throws RuntimeException

Get semantic graph artifacts

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

Implements grammarscope.iface.IDocumentFactoryService.

◆ getSentenceCount()

int grammarscope.glue.AbstractDocumentFactory.getSentenceCount ( ) throws RuntimeException

Get sentence count

Returns
sentence count

Implements grammarscope.iface.IDocumentFactoryService.

◆ getSentences()

List<SentenceSegment> grammarscope.glue.AbstractDocumentFactory.getSentences ( ) throws RuntimeException

Get sentences

Returns
list of sentence segments

Implements grammarscope.iface.IDocumentFactoryService.

Reimplemented in grammarscope.glue.corenlp.DocumentFactory.

◆ getSentiment()

Sentiment grammarscope.glue.AbstractDocumentFactory.getSentiment ( final int  sentenceIdx) throws RuntimeException

Get sentiment

Parameters
sentenceIdxsentence index
Returns
sentiment if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getSpan()

static Segment grammarscope.glue.AbstractDocumentFactory.getSpan ( final List<? extends Segment segments)
staticprivate

Span

Parameters
segmentssegments
Returns
merged segment

◆ getStanfordCoreferences()

abstract Coreferences grammarscope.glue.AbstractDocumentFactory.getStanfordCoreferences ( ) throws RuntimeException
abstractprotected

◆ getStanfordEntailments()

abstract List<Entailment> grammarscope.glue.AbstractDocumentFactory.getStanfordEntailments ( int  sentenceIdx)
abstractprotected

◆ getStanfordGrammaticalStructure()

abstract GrammaticalStructure grammarscope.glue.AbstractDocumentFactory.getStanfordGrammaticalStructure ( final int  sentenceIdx) throws RuntimeException
abstractprotected

◆ getStanfordNamedEntities()

abstract List<NamedEntity> grammarscope.glue.AbstractDocumentFactory.getStanfordNamedEntities ( final int  sentenceIdx) throws RuntimeException
abstractprotected

◆ getStanfordParseTree()

abstract Tree grammarscope.glue.AbstractDocumentFactory.getStanfordParseTree ( final int  sentenceIdx) throws RuntimeException
abstractprotected

◆ getStanfordSemanticGraph()

abstract SemanticGraph grammarscope.glue.AbstractDocumentFactory.getStanfordSemanticGraph ( final int  sentenceIdx,
final TypedDependencyMode  mode 
) throws RuntimeException
abstractprotected

◆ getStanfordSemanticGraph2()

abstract SemanticGraph grammarscope.glue.AbstractDocumentFactory.getStanfordSemanticGraph2 ( final int  sentenceIdx,
final TypedDependencyMode  mode 
) throws RuntimeException
abstractprotected

◆ getStanfordSentiment()

abstract Sentiment grammarscope.glue.AbstractDocumentFactory.getStanfordSentiment ( int  sentenceIdx)
abstractprotected

◆ getStanfordTriples()

abstract List<Triple> grammarscope.glue.AbstractDocumentFactory.getStanfordTriples ( int  sentenceIdx)
abstractprotected

◆ getStanfordTypedDependencies()

abstract Collection<TypedDependency> grammarscope.glue.AbstractDocumentFactory.getStanfordTypedDependencies ( final int  sentenceIdx,
final TypedDependencyMode  mode 
) throws RuntimeException
abstractprotected

Get typed dependencies

Parameters
sentenceIdxsentence
modetyped dependency mode
Returns
typed dependencies if successful
Exceptions
RuntimeExceptionexception

Reimplemented in grammarscope.glue.parser.DocumentFactory, grammarscope.glue.corenlp.DocumentFactory, grammarscope.ejb.client.parser.DocumentFactory, grammarscope.ejb.client.parser.DocumentFactory, grammarscope.ejb.client.corenlp.DocumentFactory, and grammarscope.ejb.client.corenlp.DocumentFactory.

◆ getStanfordTypedDependencies2()

abstract Collection<TypedDependency> grammarscope.glue.AbstractDocumentFactory.getStanfordTypedDependencies2 ( final int  sentenceIdx,
final TypedDependencyMode  mode 
) throws RuntimeException
abstractprotected

Get typed dependencies (workflow 2)

Parameters
sentenceIdxsentence
modetyped dependency mode
Returns
typed dependencies if successful
Exceptions
RuntimeExceptionexception

Reimplemented in grammarscope.glue.parser.DocumentFactory, grammarscope.glue.corenlp.DocumentFactory, grammarscope.ejb.client.parser.DocumentFactory, grammarscope.ejb.client.parser.DocumentFactory, grammarscope.ejb.client.corenlp.DocumentFactory, and grammarscope.ejb.client.corenlp.DocumentFactory.

◆ getSupportedModes()

abstract TypedDependencyMode [] grammarscope.glue.AbstractDocumentFactory.getSupportedModes ( ) throws RuntimeException
abstract

◆ getSupportedProviders()

abstract TypedDependencyProvider [] grammarscope.glue.AbstractDocumentFactory.getSupportedProviders ( ) throws RuntimeException
abstract

◆ getText()

String grammarscope.glue.AbstractDocumentFactory.getText ( ) throws RuntimeException

Get text

Returns
(original or reconstructed) text

Implements grammarscope.iface.IDocumentFactoryService.

◆ getTextAnalysis()

ATextAnalysis grammarscope.glue.AbstractDocumentFactory.getTextAnalysis ( final TypedDependencyProvider  provider,
final TypedDependencyMode  mode 
) throws RuntimeException

Get text analysis

Parameters
providerprovider
modemode
Returns
text analysis if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getTextReport()

String grammarscope.glue.AbstractDocumentFactory.getTextReport ( final TypedDependencyProvider  provider,
final TypedDependencyMode  mode,
final boolean  xMLModeFlag 
) throws RuntimeException

Get text report

Parameters
providertyped dependency provider
modetyped dependency mode
xMLModeFlagxml form
Returns
report
Exceptions
RuntimeExceptionexception

Implements grammarscope.iface.IDocumentFactoryService.

◆ getTextReports()

String [] grammarscope.glue.AbstractDocumentFactory.getTextReports ( final TypedDependencyProvider  provider,
final TypedDependencyMode  mode,
final boolean  xMLModeFlag 
) throws RuntimeException

Get text reports

Parameters
providertyped dependency provider
modetyped dependency mode
xMLModeFlagxml form
Returns
reports
Exceptions
RuntimeExceptionexception

Implements grammarscope.iface.IDocumentFactoryService.

◆ getTokens()

abstract List<Token> grammarscope.glue.AbstractDocumentFactory.getTokens ( final int  sentenceIdx) throws RuntimeException
abstract

◆ getTriples()

List<Triple> grammarscope.glue.AbstractDocumentFactory.getTriples ( final int  sentenceIdx)

Get triples

Parameters
sentenceIdxsentence index
Returns
triples if successful

Implements grammarscope.iface.IDocumentFactoryService.

◆ getTypedDependencies() [1/2]

Map<TypedDependencyProvider, Map<TypedDependencyMode, ATypedDependencies> > grammarscope.glue.AbstractDocumentFactory.getTypedDependencies ( final int  sentenceIdx) throws RuntimeException

Get typed dependencies artifact

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

Implements grammarscope.iface.IDocumentFactoryService.

◆ getTypedDependencies() [2/2]

ATypedDependencies grammarscope.glue.AbstractDocumentFactory.getTypedDependencies ( final int  sentenceIdx,
final TypedDependencyProvider  provider,
final TypedDependencyMode  mode 
) throws RuntimeException

Get typed dependencies artifact

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

Implements grammarscope.iface.IDocumentFactoryService.

◆ getWords()

List<WordSegment> grammarscope.glue.AbstractDocumentFactory.getWords ( ) throws RuntimeException

Get words

Returns
list of word segments

Implements grammarscope.iface.IDocumentFactoryService.

Reimplemented in grammarscope.glue.corenlp.DocumentFactory.

◆ grammaticalStructureToString()

static String grammarscope.glue.AbstractDocumentFactory.grammaticalStructureToString ( final GrammaticalStructure  grammaticalStructure,
final boolean  isXml 
)
staticprivate

Grammatical structure to string

Parameters
grammaticalStructuregrammatical structure
isXmlxml format
Returns
string

◆ groupToSentence()

static List<SentenceSegment> grammarscope.glue.AbstractDocumentFactory.groupToSentence ( final List< List< WordSegment >>  sentenceWordSegments)
staticprivate

Make sentence segments and map : returns (list of segments, segment to list of words map)

Parameters
sentenceWordSegmentslist of sentences
Returns
list of segments

◆ init()

boolean grammarscope.glue.AbstractDocumentFactory.init ( final String  text)

◆ makeSemanticGraphs()

Map<TypedDependencyMode, SemanticGraph> grammarscope.glue.AbstractDocumentFactory.makeSemanticGraphs ( final int  sentenceIdx)
private

Make semantic graphs

Parameters
sentenceIdxsentence index
Returns
mode-indexed semantic graphs

◆ makeSemanticGraphs2()

Map<TypedDependencyMode, SemanticGraph> grammarscope.glue.AbstractDocumentFactory.makeSemanticGraphs2 ( final int  sentenceIdx)
private

Make semantic graphs

Parameters
sentenceIdxsentence index
Returns
mode-indexed semantic graphs

◆ makeTypedDependencies()

Map<TypedDependencyMode, Collection<TypedDependency> > grammarscope.glue.AbstractDocumentFactory.makeTypedDependencies ( final int  sentenceIdx)
private

Make typed dependencies

Parameters
sentenceIdxsentence index
Returns
mode-indexed typed dependencies

◆ makeTypedDependencies2()

Map<TypedDependencyMode, Collection<TypedDependency> > grammarscope.glue.AbstractDocumentFactory.makeTypedDependencies2 ( final int  sentenceIdx)
private

Make typed dependencies 2

Parameters
sentenceIdxsentence index
Returns
mode-indexed typed dependencies

◆ namedEntitiesToString()

static String grammarscope.glue.AbstractDocumentFactory.namedEntitiesToString ( final List< NamedEntity namedEntities,
final String  sentenceString,
final SentenceSegment  sentenceSegment,
final boolean  isXml 
)
staticprivate

Named entities to string

Parameters
namedEntitiesnamed entities
sentenceStringsentence string
sentenceSegmentsentence segment
isXmlxml format
Returns
string

◆ semanticGraphsToString()

static String grammarscope.glue.AbstractDocumentFactory.semanticGraphsToString ( final Map< TypedDependencyMode, SemanticGraph >  semanticGraphs,
final TypedDependencyProvider  provider,
final boolean  isXml 
)
staticprivate

Semantic graphs to string

Parameters
semanticGraphssemantic graphs
providerprovider
isXmlxml format
Returns
string

◆ sentimentToString()

static String grammarscope.glue.AbstractDocumentFactory.sentimentToString ( final Sentiment  sentiment,
final boolean  isXml 
)
staticprivate

Sentiment to string

Parameters
sentimentsentiment
isXmlxml format
Returns
string

◆ tokensToString()

static String grammarscope.glue.AbstractDocumentFactory.tokensToString ( final List< Token tokens,
@SuppressWarnings("SameParameterValue") final String  tokenizer,
final boolean  isXml 
)
staticprivate

Tokens to string

Parameters
tokenstokens
tokenizertokenize
isXmlxml format
Returns
string

◆ treeToString()

static String grammarscope.glue.AbstractDocumentFactory.treeToString ( final Tree  parseTree,
final boolean  isXml 
)
staticprivate

Parse tree to string

Parameters
parseTreeparse tree
isXmlxml format
Returns
string

◆ triplesToString()

static String grammarscope.glue.AbstractDocumentFactory.triplesToString ( final List< Triple triples,
final boolean  isXml 
)
staticprivate

Triples to string

Parameters
triplestriples
isXmlxml format
Returns
string

◆ typedDependenciesToString()

static String grammarscope.glue.AbstractDocumentFactory.typedDependenciesToString ( final Map< TypedDependencyMode, Collection< TypedDependency >>  typedDependencies,
final TypedDependencyProvider  provider,
final boolean  isXML 
)
staticprivate

Typed dependencies to string

Parameters
typedDependenciestyped dependencies
isXMLxml format
providerprovider
Returns
string

Member Data Documentation

◆ grammaticalStructures

final Cache<GrammaticalStructure> grammarscope.glue.AbstractDocumentFactory.grammaticalStructures
protected

Grammatical structure cache

◆ language

final Language grammarscope.glue.AbstractDocumentFactory.language
protected

Language

◆ parseTrees

final Cache<Tree> grammarscope.glue.AbstractDocumentFactory.parseTrees
protected

Parse tree cache

◆ relationDependentsDirectFactory

final RelationDependentsDirectFactory grammarscope.glue.AbstractDocumentFactory.relationDependentsDirectFactory
protected

Relation dependents factory

◆ relationDependentsFromGrammaticalStructure

final boolean grammarscope.glue.AbstractDocumentFactory.relationDependentsFromGrammaticalStructure = false
staticprivate

Build relation dependents from GrammaticalStructure

◆ sentenceSegments

List<SentenceSegment> grammarscope.glue.AbstractDocumentFactory.sentenceSegments
private

Sentence segments

◆ stanfordMode

final boolean grammarscope.glue.AbstractDocumentFactory.stanfordMode = false
staticprivate

XML mode (Stanford|GrammarScope)

◆ text

String grammarscope.glue.AbstractDocumentFactory.text
protected

Text

◆ tokens

final Cache<List<Token> > grammarscope.glue.AbstractDocumentFactory.tokens
protected

Tokens

◆ typedDependencies

final Map<TypedDependencyMode, Cache<Collection<TypedDependency> > > grammarscope.glue.AbstractDocumentFactory.typedDependencies
protected

Typed dependency cache

◆ typedDependencies2

final Map<TypedDependencyMode, Cache<Collection<TypedDependency> > > grammarscope.glue.AbstractDocumentFactory.typedDependencies2
protected

Typed dependency cache (workflow 2)

◆ wordSegments

List<WordSegment> grammarscope.glue.AbstractDocumentFactory.wordSegments
private

Word segments

◆ xMLPrinter

final XMLPrinter grammarscope.glue.AbstractDocumentFactory.xMLPrinter = stanfordMode ? new XMLPrinterStanford() : new XMLPrinterGrammarScope()
static

XML printer


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